Commit 80838531 by Zdenek Dvorak Committed by Zdenek Dvorak

final.c (shorten_branches): Remove outdated comment, and turn the if branch that…

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
parent 7490e6c4
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.
* cfgloop.h (struct loop): Remove unused fields.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment