From: Richard Kenner Date: Mon, 28 Dec 1992 00:52:26 +0000 (-0500) Subject: (relax_delay_slots): Only look at JUMP_LABEL for a condjump_p. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9fca773d22ce7679d9f683210a36ae5e520cb311;p=gcc.git (relax_delay_slots): Only look at JUMP_LABEL for a condjump_p. From-SVN: r2935 --- 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);