aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2000-04-25 12:57:41 +0000
committerJan Hubicka <hubicka@gcc.gnu.org>2000-04-25 12:57:41 +0000
commit424a02db691cd35dcd935beeabe85c514857b732 (patch)
tree48a166bece49bd257d7103fa853c39e1cb6f2880 /gcc/loop.c
parent65e14bf592104223ad62014869b6a6795173cd8d (diff)
downloadgcc-424a02db691cd35dcd935beeabe85c514857b732.zip
gcc-424a02db691cd35dcd935beeabe85c514857b732.tar.gz
gcc-424a02db691cd35dcd935beeabe85c514857b732.tar.bz2
* loop.c (strength_reduce): Fix typo in the last checkin.
From-SVN: r33413
Diffstat (limited to 'gcc/loop.c')
-rw-r--r--gcc/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c
index 3a93988..fe77b6b 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -4129,7 +4129,7 @@ strength_reduce (loop, insn_count, unroll_p, bct_p)
|| GET_CODE (next) == JUMP_INSN)
break;
#ifdef HAVE_cc0
- if (INSN_P (next)
+ if (! INSN_P (next)
|| ! sets_cc0_p (PATTERN (next)))
#endif
dominator = next;