From d58b6986f4e552292ab24b8ac2f0d66b0cea083f Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Sun, 27 Feb 1994 15:16:22 -0800 Subject: [PATCH] (try_merge_delay_insns): Success when SLOT_NUMBER == NUM_SLOTS not when NEXT_TO_MATCH == 0. From-SVN: r6659 --- gcc/reorg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/reorg.c b/gcc/reorg.c index 563c607bcff..71fc4f3d7b5 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -1815,7 +1815,7 @@ try_merge_delay_insns (insn, thread) merged insns. Also clear the INSN_FROM_TARGET_P bit of each insn the the delay list so that we know that it isn't only being used at the target. */ - if (next_to_match == 0 && annul_p) + if (slot_number == num_slots && annul_p) { for (; merged_insns; merged_insns = XEXP (merged_insns, 1)) { -- 2.30.2