diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-11 23:11:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-11 23:11:39 +0000 |
commit | 25a6c68bca08d059334543675bd5a6045008ff9b (patch) | |
tree | 1513627bfa75f0e9c0e5a865e58faf96ac324873 /gcc/cfgloop.h | |
parent | a5d3e50dcdc03b2aefc0e176f4ba351cc26d4213 (diff) | |
download | gcc-25a6c68bca08d059334543675bd5a6045008ff9b.zip gcc-25a6c68bca08d059334543675bd5a6045008ff9b.tar.gz gcc-25a6c68bca08d059334543675bd5a6045008ff9b.tar.bz2 |
cfgloopmanip.c (update_single_exits_after_duplication, unloop): Make them static.
* cfgloopmanip.c (update_single_exits_after_duplication,
unloop): Make them static.
* cfgloop.h: Remove the corresponding prototypes.
From-SVN: r90503
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index 303d611..9df217e 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -274,8 +274,6 @@ extern int flow_loop_scan (struct loop *, int); extern void flow_loop_free (struct loop *); void mark_irreducible_loops (struct loops *); void mark_single_exit_loops (struct loops *); -void update_single_exits_after_duplication (basic_block *, unsigned, - struct loop *); extern void create_loop_notes (void); /* Loop data structure manipulation/querying. */ @@ -337,7 +335,6 @@ extern int duplicate_loop_to_header_edge (struct loop *, edge, struct loops *, unsigned *, int); extern struct loop *loopify (struct loops *, edge, edge, basic_block, edge, edge, bool); -extern void unloop (struct loops *, struct loop *); extern bool remove_path (struct loops *, edge); extern edge split_loop_bb (basic_block, void *); |