final.c (shorten_branches): Remove outdated comment, and turn the if branch that guards it to continue.

* final.c (shorten_branches): Remove outdated comment, and turn
	the if branch that guards it to continue.

From-SVN: r111995
This commit is contained in:
Zdenek Dvorak 2006-03-13 13:08:38 +01:00 committed by Zdenek Dvorak
parent 7490e6c410
commit 8083853174
2 changed files with 8 additions and 8 deletions

View File

@ -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.

View File

@ -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;