Commit 2b410855 by Kazu Hirata Committed by Kazu Hirata

* cfglayout.c (fixup_reorder_chain): Remove old_bb.

From-SVN: r96162
parent b0c32a73
2005-03-09 Kazu Hirata <kazu@cs.umass.edu>
* cfglayout.c (fixup_reorder_chain): Remove old_bb.
2005-03-08 Jeff Law <law@redhat.com> 2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed * tree-cfg.c (cleanup_control_flow): If removal of a computed
......
...@@ -627,7 +627,6 @@ fixup_reorder_chain (void) ...@@ -627,7 +627,6 @@ fixup_reorder_chain (void)
edge e_fall, e_taken, e; edge e_fall, e_taken, e;
rtx bb_end_insn; rtx bb_end_insn;
basic_block nb; basic_block nb;
basic_block old_bb;
edge_iterator ei; edge_iterator ei;
if (EDGE_COUNT (bb->succs) == 0) if (EDGE_COUNT (bb->succs) == 0)
...@@ -772,7 +771,6 @@ fixup_reorder_chain (void) ...@@ -772,7 +771,6 @@ fixup_reorder_chain (void)
nb->rbi->next = bb->rbi->next; nb->rbi->next = bb->rbi->next;
bb->rbi->next = nb; bb->rbi->next = nb;
/* Don't process this new block. */ /* Don't process this new block. */
old_bb = bb;
bb = nb; bb = nb;
/* Make sure new bb is tagged for correct section (same as /* Make sure new bb is tagged for correct section (same as
......
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