diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-10-10 23:18:32 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-10-10 17:18:32 -0600 |
commit | 9265dacf25a26ef02473949bc8feec743e1e5b8c (patch) | |
tree | aa526f8221b6bf5dce3a4b3b7cb94f5962e87891 /gcc/gcse.c | |
parent | a86d864c41d8dc8bdcbcf87cdfa49185319fd0e5 (diff) | |
download | gcc-9265dacf25a26ef02473949bc8feec743e1e5b8c.zip gcc-9265dacf25a26ef02473949bc8feec743e1e5b8c.tar.gz gcc-9265dacf25a26ef02473949bc8feec743e1e5b8c.tar.bz2 |
flow.c (find_basic_blocks): Delte "live_reachable_p" argument.
* flow.c (find_basic_blocks): Delte "live_reachable_p" argument.
(find_basic_blocks_1): Similarly.
* output.h (find_basic_blocks): Fix prototype.
* gcse.c, toplev.c: Don't pass "live_reachable_p" argument to
find_basic_blocks anymore.
From-SVN: r22979
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -669,7 +669,7 @@ gcse_main (f, file) debug_stderr = stderr; max_gcse_regno = max_reg_num (); - find_basic_blocks (f, max_gcse_regno, file, 0); + find_basic_blocks (f, max_gcse_regno, file); /* Return if there's nothing to do. */ if (n_basic_blocks <= 1) |