summaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-10-10 23:18:32 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-10-10 23:18:32 +0000
commit053ec0a10583ccc6b8090c98aaef7529ea450e78 (patch)
treeaa526f8221b6bf5dce3a4b3b7cb94f5962e87891 /gcc/gcse.c
parent9f1379d723185dcae00a770676eb548c18df351b (diff)
downloadgcc-053ec0a10583ccc6b8090c98aaef7529ea450e78.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22979 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index 0732cb4cadd..cffb94e31f0 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -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)