From: Jim Wilson Date: Wed, 7 Jul 1993 22:06:00 +0000 (-0700) Subject: (sparc_frw_save_restore): Add parentheses to satify gcc. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ea961c18aaf6bc5c94acb1d756641c7b0ae0511e;p=gcc.git (sparc_frw_save_restore): Add parentheses to satify gcc. From-SVN: r4879 --- diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index a93a63b01b9..1c46f9870a9 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -3246,7 +3246,7 @@ sparc_frw_save_restore (file, word_op, doubleword_op) if ((mask & (1L << regno)) != 0 || (regno == FRAME_POINTER_REGNUM && frame_pointer_needed)) { - if ((regno & 0x1) == 0 && ((mask & (1L << regno+1)) != 0)) + if ((regno & 0x1) == 0 && ((mask & (1L << (regno+1))) != 0)) { if (gp_offset % 8 != 0) gp_offset += UNITS_PER_WORD;