diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-04-19 02:15:46 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-04-19 02:15:46 +0000 |
commit | 17e2b3cb0486f4e1aedb8f0bb0d451a8e20c17fe (patch) | |
tree | f6acc24a58e2b4620ed60cd74935368dff69b793 /gcc/loop.c | |
parent | 9e24b9506aff4651182659d46bbec90e8f28cfd4 (diff) | |
download | gcc-17e2b3cb0486f4e1aedb8f0bb0d451a8e20c17fe.zip gcc-17e2b3cb0486f4e1aedb8f0bb0d451a8e20c17fe.tar.gz gcc-17e2b3cb0486f4e1aedb8f0bb0d451a8e20c17fe.tar.bz2 |
loop.c (load_mems): Examine all the instructions in the loop before concluding that all jumps...
* loop.c (load_mems): Examine all the instructions in the loop
before concluding that all jumps branch to the first instruction
after the loop.
From-SVN: r41417
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8830,7 +8830,7 @@ load_mems (loop) never executed. Also check if there is a goto out of the loop other than right after the end of the loop. */ for (p = next_insn_in_loop (loop, loop->scan_start); - p != NULL_RTX && ! maybe_never; + p != NULL_RTX; p = next_insn_in_loop (loop, p)) { if (GET_CODE (p) == CODE_LABEL) |