From 105ebae827e8010966ddbd0f9ec8d877556565a3 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Fri, 11 Aug 2006 21:01:45 +0200 Subject: re PR rtl-optimization/23454 (ICE in invert_exp_1, at jump.c:1719) PR rtl-optimization/23454 * reorg.c (relax_delay_slots): Update comment. From-SVN: r116088 --- gcc/reorg.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/reorg.c') diff --git a/gcc/reorg.c b/gcc/reorg.c index 7781d27..42ecda0 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -3327,11 +3327,11 @@ relax_delay_slots (rtx first) continue; } - /* See if this jump (with its delay slots) branches around another - jump (without delay slots). If so, invert this jump and point - it to the target of the second jump. We cannot do this for - annulled jumps, though. Again, don't convert a jump to a RETURN - here. */ + /* See if this jump (with its delay slots) conditionally branches + around an unconditional jump (without delay slots). If so, invert + this jump and point it to the target of the second jump. We cannot + do this for annulled jumps, though. Again, don't convert a jump to + a RETURN here. */ if (! INSN_ANNULLED_BRANCH_P (delay_insn) && any_condjump_p (delay_insn) && next && JUMP_P (next) -- cgit v1.1