Commit 164d59e0 by Jeffrey A Law Committed by Jeff Law

flow.c (delete_unreachable_blocks): Fix patch error in previous change (call to…

flow.c (delete_unreachable_blocks): Fix patch error in previous change (call to find_unreachable_blocks was lost).


        * flow.c (delete_unreachable_blocks): Fix patch error in
        previous change (call to find_unreachable_blocks was lost).

From-SVN: r43463
parent 4fb3cbd7
...@@ -6,6 +6,9 @@ ...@@ -6,6 +6,9 @@
Tue Jun 19 07:53:52 2001 Jeffrey A Law (law@cygnus.com) Tue Jun 19 07:53:52 2001 Jeffrey A Law (law@cygnus.com)
* flow.c (delete_unreachable_blocks): Fix patch error in
previous change (call to find_unreachable_blocks was lost).
* ssa.c (ssa_uses): Remove definition. * ssa.c (ssa_uses): Remove definition.
(apply_delayed_renames): Don't grow ssa_uses. (apply_delayed_renames): Don't grow ssa_uses.
(rename_block): Remove comment related to ssa_uses. (rename_block): Remove comment related to ssa_uses.
......
...@@ -2108,6 +2108,8 @@ delete_unreachable_blocks () ...@@ -2108,6 +2108,8 @@ delete_unreachable_blocks ()
{ {
int i; int i;
find_unreachable_blocks ();
/* Delete all unreachable basic blocks. Count down so that we /* Delete all unreachable basic blocks. Count down so that we
don't interfere with the block renumbering that happens in don't interfere with the block renumbering that happens in
flow_delete_block. */ flow_delete_block. */
......
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