aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/loop.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 72fda65..3c460a9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-17 Chandrakala Chavva <cchavva@cygnus.com>
+
+ * loop.c (check_dbra_loop) : Changed loop_continue to loop->cont.
+
2000-07-17 Jason Merrill <jason@redhat.com>
* Makefile.in (clean): Remove libgcc directory.
diff --git a/gcc/loop.c b/gcc/loop.c
index 7015dc9..c22137c 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -7801,7 +7801,7 @@ check_dbra_loop (loop, insn_count)
tests with more than one condition. */
rtx jump1;
- if ((jump1 = prev_nonnote_insn (jump)) != loop_continue)
+ if ((jump1 = prev_nonnote_insn (jump)) != loop->cont)
if (GET_CODE (jump1) == JUMP_INSN))
return 0;
}