From 22422dbf7f0acba7b56b76e8eca995266f1e3c36 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 29 Jul 1992 03:42:12 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1709 --- gcc/reorg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/reorg.c b/gcc/reorg.c index 4649d1dc962..778090ef284 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -2923,7 +2923,7 @@ fill_slots_from_thread (insn, condition, thread, opposite_thread, likely, if (new_thread && GET_CODE (new_thread) == JUMP_INSN && (simplejump_p (new_thread) || GET_CODE (PATTERN (new_thread)) == RETURN)) - new_thread = follow_jumps (JUMP_LABEL (new_thread), 1); + new_thread = follow_jumps (JUMP_LABEL (new_thread)); if (new_thread == 0) label = find_end_label (); @@ -3084,7 +3084,7 @@ relax_delay_slots (first) if (GET_CODE (insn) == JUMP_INSN && (target_label = JUMP_LABEL (insn)) != 0) { - target_label = follow_jumps (target_label, 1); + target_label = follow_jumps (target_label); target_label = prev_label (next_active_insn (target_label)); if (target_label == 0) @@ -3196,7 +3196,7 @@ relax_delay_slots (first) { /* If this jump goes to another unconditional jump, thread it, but don't convert a jump into a RETURN here. */ - trial = follow_jumps (target_label, 1); + trial = follow_jumps (target_label); trial = prev_label (next_active_insn (trial)); if (trial == 0 && target_label != 0) trial = find_end_label (); -- 2.30.2