aboutsummaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-10-10 23:18:32 +0000
committerJeff Law <law@gcc.gnu.org>1998-10-10 17:18:32 -0600
commit9265dacf25a26ef02473949bc8feec743e1e5b8c (patch)
treeaa526f8221b6bf5dce3a4b3b7cb94f5962e87891 /gcc/toplev.c
parenta86d864c41d8dc8bdcbcf87cdfa49185319fd0e5 (diff)
downloadgcc-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/toplev.c')
-rw-r--r--gcc/toplev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index f24767a..97ee2fa 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -3649,7 +3649,7 @@ rest_of_compilation (decl)
TIMEVAR
(flow_time,
{
- find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 1);
+ find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
life_analysis (insns, max_reg_num (), rtl_dump_file);
});