aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-07-29 03:42:12 +0000
committerRichard Stallman <rms@gnu.org>1992-07-29 03:42:12 +0000
commit22422dbf7f0acba7b56b76e8eca995266f1e3c36 (patch)
tree5eea61eb47d32a2067c9bf5c5f333eb53f693220
parentcfd6bb3d08ca20a2e6fcbe85c3ee1001c8e207b8 (diff)
downloadgcc-22422dbf7f0acba7b56b76e8eca995266f1e3c36.zip
gcc-22422dbf7f0acba7b56b76e8eca995266f1e3c36.tar.gz
gcc-22422dbf7f0acba7b56b76e8eca995266f1e3c36.tar.bz2
*** empty log message ***
From-SVN: r1709
-rw-r--r--gcc/reorg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c
index 4649d1d..778090e 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 ();