flow.c (delete_unreachable_blocks): Fix patch error in previous change (call to find_...
authorJeffrey A Law <law@cygnus.com>
Tue, 19 Jun 2001 15:03:01 +0000 (15:03 +0000)
committerJeff Law <law@gcc.gnu.org>
Tue, 19 Jun 2001 15:03:01 +0000 (09:03 -0600)
        * flow.c (delete_unreachable_blocks): Fix patch error in
        previous change (call to find_unreachable_blocks was lost).

From-SVN: r43463

gcc/ChangeLog
gcc/flow.c

index 2e4b2553dea1a7ae66d4892453e0672d98cb702b..a5754d3f596866eb3d66af2f267a5c54382119e3 100644 (file)
@@ -6,6 +6,9 @@
 
 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.
        (apply_delayed_renames): Don't grow ssa_uses.
        (rename_block): Remove comment related to ssa_uses.
index 43ed9cc03ffdf93838dbce710a69859fb6c18d9e..50997fadcae640ffccc67fa3add4f0f679bc22fc 100644 (file)
@@ -2108,6 +2108,8 @@ delete_unreachable_blocks ()
 {
   int i;
 
+  find_unreachable_blocks ();
+
   /* Delete all unreachable basic blocks.  Count down so that we
      don't interfere with the block renumbering that happens in
      flow_delete_block.  */