From d84aa71e9693c3052af4c7e034d34a1f3422d883 Mon Sep 17 00:00:00 2001 From: rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Mon, 13 Mar 2006 12:08:38 +0000 Subject: [PATCH] * final.c (shorten_branches): Remove outdated comment, and turn the if branch that guards it to continue. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111995 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/final.c | 11 +++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6c0e0a560214..cd3f8b2e8e0d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-03-13 Zdenek Dvorak <dvorakz@suse.cz> + + * final.c (shorten_branches): Remove outdated comment, and turn + the if branch that guards it to continue. + 2006-03-13 Zdenek Dvorak <dvorakz@suse.cz> * cfgloop.c (flow_loop_dump): Do not dump loop->invalid field. diff --git a/gcc/final.c b/gcc/final.c index 04596646b3ed..f233f12219a8 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -856,14 +856,9 @@ shorten_branches (rtx first ATTRIBUTE_UNUSED) INSN_SHUID (insn) = i++; if (INSN_P (insn)) - { - /* reorg might make the first insn of a loop being run once only, - and delete the label in front of it. Then we want to apply - the loop alignment to the new label created by reorg, which - is separated by the former loop start insn from the - NOTE_INSN_LOOP_BEG. */ - } - else if (LABEL_P (insn)) + continue; + + if (LABEL_P (insn)) { rtx next; -- GitLab