From 9fca773d22ce7679d9f683210a36ae5e520cb311 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 27 Dec 1992 19:52:26 -0500 Subject: [PATCH] (relax_delay_slots): Only look at JUMP_LABEL for a condjump_p. From-SVN: r2935 --- gcc/reorg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/reorg.c b/gcc/reorg.c index bcee35ebf17..49d66fa4b94 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -3207,6 +3207,7 @@ relax_delay_slots (first) the next insn, or jumps to a label that is not the last of a group of consecutive labels. */ if (GET_CODE (insn) == JUMP_INSN + && condjump_p (insn) && (target_label = JUMP_LABEL (insn)) != 0) { target_label = follow_jumps (target_label); -- 2.30.2