aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>2001-06-19 15:03:01 +0000
committerJeff Law <law@gcc.gnu.org>2001-06-19 09:03:01 -0600
commit164d59e04e9897ab5c82c642e9df1f2f62c9009a (patch)
tree24759b2a4445511f2dd8e4ac2d1a12cd45939db5 /gcc/flow.c
parent4fb3cbd7e5e72c22c0fc63a0fec1101ed0590776 (diff)
downloadgcc-164d59e04e9897ab5c82c642e9df1f2f62c9009a.zip
gcc-164d59e04e9897ab5c82c642e9df1f2f62c9009a.tar.gz
gcc-164d59e04e9897ab5c82c642e9df1f2f62c9009a.tar.bz2
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
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 43ed9cc..50997fa 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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. */