aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/unroll.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b490839..7dede22 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jul 23 11:54:23 2001 Clinton Popetz <cpopetz@cpopetz.com>
+
+ * unroll.c (loop_iterations): Fix miscalculation of initial
+ giv offset.
+
2001-07-13 Andrew Haley <aph@redhat.com>
* doc/tm.texi (MD_CAN_REDIRECT_BRANCH): New macro.
diff --git a/gcc/unroll.c b/gcc/unroll.c
index 9a09f5d..c26a297 100644
--- a/gcc/unroll.c
+++ b/gcc/unroll.c
@@ -3662,7 +3662,6 @@ loop_iterations (loop)
if (loop_insn_first_p (v->insn, biv_inc->insn))
offset -= INTVAL (biv_inc->add_val);
}
- offset *= INTVAL (v->mult_val);
}
if (loop_dump_stream)
fprintf (loop_dump_stream,