aboutsummaryrefslogtreecommitdiff
path: root/gcc/cse.c
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>1998-08-14 12:28:30 -0400
committerJason Merrill <jason@gcc.gnu.org>1998-08-14 12:28:30 -0400
commit63be02dbae005d1fe195538d17abb76cc28e6e8e (patch)
treefa8eb8dc086c729e2ecfef30c355044a7e7af60c /gcc/cse.c
parentf710f868cbda44939f994e843d33e85c7ea1bdb5 (diff)
downloadgcc-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/cse.c')
-rw-r--r--gcc/cse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index 5d12187..94e80c3 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -8647,7 +8647,7 @@ cse_basic_block (from, to, next_branch, around_loop)
its destination is the result of the block and hence should be
recorded. */
- if (p = find_reg_note (insn, REG_LIBCALL, NULL_RTX))
+ if ((p = find_reg_note (insn, REG_LIBCALL, NULL_RTX)))
libcall_insn = XEXP (p, 0);
else if (find_reg_note (insn, REG_RETVAL, NULL_RTX))
libcall_insn = NULL_RTX;