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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2e4b255..a5754d3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. @@ -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. */ |