sim: sh: fix a few compiler warnings

This commit is contained in:
Mike Frysinger
2021-05-29 00:42:27 -04:00
parent 80e61ea097
commit cd7caae651
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2021-05-29 Mike Frysinger <vapier@gentoo.org>
* interp.c (SET_RC): Add parenthesis.
(sim_open): Add const to p.
2021-05-17 Mike Frysinger <vapier@gentoo.org>
* sim-main.h (SIM_HAVE_COMMON_SIM_STATE): Delete.

View File

@ -214,7 +214,7 @@ do { \
#define SET_RC(x) \
(saved_state.asregs.cregs.named.sr \
= saved_state.asregs.cregs.named.sr & 0xf000ffff | ((x) & 0xfff) << 16)
= (saved_state.asregs.cregs.named.sr & 0xf000ffff) | ((x) & 0xfff) << 16)
/* Manipulate FPSCR */
@ -2345,7 +2345,7 @@ SIM_DESC
sim_open (SIM_OPEN_KIND kind, host_callback *cb,
struct bfd *abfd, char * const *argv)
{
char **p;
char * const *p;
int i;
union
{