aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>2001-06-28 16:11:19 -0600
committerJeff Law <law@gcc.gnu.org>2001-06-28 16:11:19 -0600
commit10c4b247fd9f5a610f7a02dc21fa758173ed9aef (patch)
treef878eace31893b70b0dfb05d8672c204fb07c75f /gcc/flow.c
parent0f40f9f7c68aadde4d52b4fc04d016b72451d238 (diff)
downloadgcc-10c4b247fd9f5a610f7a02dc21fa758173ed9aef.zip
gcc-10c4b247fd9f5a610f7a02dc21fa758173ed9aef.tar.gz
gcc-10c4b247fd9f5a610f7a02dc21fa758173ed9aef.tar.bz2
Makefile.in (OBJS): Add df.o
* Makefile.in (OBJS): Add df.o (df.o): Add dependencies. * basic-block.h (flow_depth_first_order_compute): Declare. * flow.c (flow_depth_first_order_compute): No longer declare. Make external. * df.c, df.h: New files. * po/POTFILES.in: Update for new files. From-SVN: r43647
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index a18c625..ae0c58a 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -458,7 +458,6 @@ static int flow_loop_entry_edges_find PARAMS ((basic_block, const sbitmap,
edge **));
static int flow_loop_exit_edges_find PARAMS ((const sbitmap, edge **));
static int flow_loop_nodes_find PARAMS ((basic_block, basic_block, sbitmap));
-static int flow_depth_first_order_compute PARAMS ((int *, int *));
static void flow_dfs_compute_reverse_init
PARAMS ((depth_first_search_ds));
static void flow_dfs_compute_reverse_add_bb
@@ -8223,7 +8222,7 @@ flow_loop_nodes_find (header, latch, nodes)
tries to get as far away from the starting point as quickly as
possible. */
-static int
+int
flow_depth_first_order_compute (dfs_order, rc_order)
int *dfs_order;
int *rc_order;