diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-13 12:08:38 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-13 12:08:38 +0000 |
commit | d84aa71e9693c3052af4c7e034d34a1f3422d883 (patch) | |
tree | 8a6191015d6041b4e148c144413458638ee858ae /gcc/final.c | |
parent | 58b3f902e39acda013b7612b8bb66e10ecddda6a (diff) | |
download | gcc-d84aa71e9693c3052af4c7e034d34a1f3422d883.tar.gz |
* 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
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gcc/final.c b/gcc/final.c index 04596646b3e..f233f12219a 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; |