diff options
author | Jeffrey A Law <law@cygnus.com> | 2001-06-19 15:03:01 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2001-06-19 09:03:01 -0600 |
commit | 164d59e04e9897ab5c82c642e9df1f2f62c9009a (patch) | |
tree | 24759b2a4445511f2dd8e4ac2d1a12cd45939db5 /gcc/flow.c | |
parent | 4fb3cbd7e5e72c22c0fc63a0fec1101ed0590776 (diff) | |
download | gcc-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. */ |