diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-08-14 20:55:11 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-08-14 20:55:11 +0000 |
commit | e49a1d2e073c02fafe4fc80147966c1f0c11488f (patch) | |
tree | c9332dca3ec3ca34edc8e972059519e24fd0a7e6 /gcc/cse.c | |
parent | 78fbdbf74875ef9b17e62f070c10b75faf79ecc3 (diff) | |
download | gcc-e49a1d2e073c02fafe4fc80147966c1f0c11488f.zip gcc-e49a1d2e073c02fafe4fc80147966c1f0c11488f.tar.gz gcc-e49a1d2e073c02fafe4fc80147966c1f0c11488f.tar.bz2 |
cse.c (fold_rtx): Avoid empty body in an if-statement.
* cse.c (fold_rtx): Avoid empty body in an if-statement.
* doloop.c (doloop_iterations_max, doloop_modify): Avoid using the
`U' integer constant suffix.
* dwarf2out.c (add_subscript_info): Avoid empty body in an
else-statement.
* sparc/sol2.h (__enable_execute_stack): Prototype.
From-SVN: r35687
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3646,7 +3646,7 @@ fold_rtx (x, insn) if (fmt[i] == 'E') /* Don't try to fold inside of a vector of expressions. Doing nothing is harmless. */ - ; + {;} } /* If a commutative operation, place a constant integer as the second |