summaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>2006-03-13 12:08:38 +0000
committerrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>2006-03-13 12:08:38 +0000
commitd84aa71e9693c3052af4c7e034d34a1f3422d883 (patch)
tree8a6191015d6041b4e148c144413458638ee858ae /gcc/final.c
parent58b3f902e39acda013b7612b8bb66e10ecddda6a (diff)
downloadgcc-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.c11
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;