diff options
author | Jason Merrill <jason@gcc.gnu.org> | 1998-08-14 12:28:30 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1998-08-14 12:28:30 -0400 |
commit | 63be02dbae005d1fe195538d17abb76cc28e6e8e (patch) | |
tree | fa8eb8dc086c729e2ecfef30c355044a7e7af60c /gcc/alias.c | |
parent | f710f868cbda44939f994e843d33e85c7ea1bdb5 (diff) | |
download | gcc-63be02dbae005d1fe195538d17abb76cc28e6e8e.zip gcc-63be02dbae005d1fe195538d17abb76cc28e6e8e.tar.gz gcc-63be02dbae005d1fe195538d17abb76cc28e6e8e.tar.bz2 |
i386.h (MODES_TIEABLE_P): Reorganize to shut up warnings.
* i386.h (MODES_TIEABLE_P): Reorganize to shut up warnings.
* alias.c (memrefs_conflict_p): Add braces to shut up warnings.
* cse.c (cse_basic_block): Add parens to shut up warnings.
From-SVN: r21734
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index de47139..8e0d21b 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -726,11 +726,14 @@ memrefs_conflict_p (xsize, x, ysize, y, c) if (rtx_equal_for_memref_p (x0, y0)) return memrefs_conflict_p (xsize, x1, ysize, y1, c); if (GET_CODE (x1) == CONST_INT) - if (GET_CODE (y1) == CONST_INT) - return memrefs_conflict_p (xsize, x0, ysize, y0, - c - INTVAL (x1) + INTVAL (y1)); - else - return memrefs_conflict_p (xsize, x0, ysize, y, c - INTVAL (x1)); + { + if (GET_CODE (y1) == CONST_INT) + return memrefs_conflict_p (xsize, x0, ysize, y0, + c - INTVAL (x1) + INTVAL (y1)); + else + return memrefs_conflict_p (xsize, x0, ysize, y, + c - INTVAL (x1)); + } else if (GET_CODE (y1) == CONST_INT) return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1)); |