diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-07-07 15:06:00 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-07-07 15:06:00 -0700 |
commit | ea961c18aaf6bc5c94acb1d756641c7b0ae0511e (patch) | |
tree | 3dd4d5024b13b63f728df02134e01836af8e9bef /gcc | |
parent | d57c66daa6d45c5bf1c54f074c3a2bab774fe6e2 (diff) | |
download | gcc-ea961c18aaf6bc5c94acb1d756641c7b0ae0511e.zip gcc-ea961c18aaf6bc5c94acb1d756641c7b0ae0511e.tar.gz gcc-ea961c18aaf6bc5c94acb1d756641c7b0ae0511e.tar.bz2 |
(sparc_frw_save_restore): Add parentheses to satify gcc.
From-SVN: r4879
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sparc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index a93a63b..1c46f98 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; |