diff options
author | Jeff Law <law@gcc.gnu.org> | 2001-06-28 16:11:19 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2001-06-28 16:11:19 -0600 |
commit | 10c4b247fd9f5a610f7a02dc21fa758173ed9aef (patch) | |
tree | f878eace31893b70b0dfb05d8672c204fb07c75f /gcc/flow.c | |
parent | 0f40f9f7c68aadde4d52b4fc04d016b72451d238 (diff) | |
download | gcc-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |