aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.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/flow.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/flow.c')
-rw-r--r--gcc/flow.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 038c5d7..35a43cd 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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;