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/cse.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/cse.c')
-rw-r--r-- | gcc/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |