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/flow.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/flow.c')
-rw-r--r-- | gcc/flow.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -298,11 +298,10 @@ static void count_reg_references PROTO ((rtx)); information to be inaccurate and not suitable for passes like GCSE. */ void -find_basic_blocks (f, nregs, file, live_reachable_p) +find_basic_blocks (f, nregs, file) rtx f; int nregs; FILE *file; - int live_reachable_p; { register rtx insn; register int i; @@ -402,7 +401,7 @@ find_basic_blocks (f, nregs, file, live_reachable_p) uid_volatile = (char *) xmalloc (max_uid_for_flow + 1); bzero (uid_volatile, max_uid_for_flow + 1); - find_basic_blocks_1 (f, nonlocal_label_list, live_reachable_p); + find_basic_blocks_1 (f, nonlocal_label_list); } /* For communication between find_basic_blocks_1 and its subroutines. */ @@ -436,9 +435,8 @@ static rtx nonlocal_label_list; information to be inaccurate and not suitable for passes like GCSE. */ static void -find_basic_blocks_1 (f, nonlocal_labels, live_reachable_p) +find_basic_blocks_1 (f, nonlocal_labels) rtx f, nonlocal_labels; - int live_reachable_p; { register rtx insn; register int i; |