From f10aac290a4ef3806f3f4aa55ac62fe417d3fcfd Mon Sep 17 00:00:00 2001 From: Roger Sayle Date: Wed, 2 Oct 2002 02:48:10 +0000 Subject: [PATCH] * unroll.c (loop_iterations): Revert 2002-09-08 change. From-SVN: r57720 --- gcc/ChangeLog | 4 ++++ gcc/unroll.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b50421956ed..788eba6508d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-01 Roger Sayle + + * unroll.c (loop_iterations): Revert 2002-09-08 change. + 2002-10-01 Richard Henderson * real.c (real_to_decimal): Crop trailing zeros for DIGITS < 0. diff --git a/gcc/unroll.c b/gcc/unroll.c index a1b02873043..97e646eb25c 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -3309,7 +3309,7 @@ loop_iterations (loop) accidentally get the branch for a contained loop if the branch for this loop was deleted. We can only trust branches immediately before the loop_end. */ - last_loop_insn = prev_nonnote_insn (loop->end); + last_loop_insn = PREV_INSN (loop->end); /* ??? We should probably try harder to find the jump insn at the end of the loop. The following code assumes that -- 2.30.2