diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-25 21:46:18 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-25 21:46:18 +0000 |
commit | 5132abc2a854979cf96b725ee0aaef2cd3121799 (patch) | |
tree | bae5635c52da0ceca84728ad777ac4425db8d162 /gcc/cfgloop.h | |
parent | 3401a17fcbee4b9524111a94ddd5208661ad39ce (diff) | |
download | gcc-5132abc2a854979cf96b725ee0aaef2cd3121799.zip gcc-5132abc2a854979cf96b725ee0aaef2cd3121799.tar.gz gcc-5132abc2a854979cf96b725ee0aaef2cd3121799.tar.bz2 |
cfgloopmanip.c (loopify): Take two more arguments true_edge and false_edge.
* cfgloopmanip.c (loopify): Take two more arguments true_edge
and false_edge.
* cfgloop.h: Adjust the corresponding prototype.
* loop-unswitch.c (unswitch_loop): Adjust a call to loopify.
* tree-ssa-loop-manip.c (tree_ssa_loop_version): Likewise.
From-SVN: r89555
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index 5de3f64..96d865f 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -339,7 +339,8 @@ extern struct loop * duplicate_loop (struct loops *, struct loop *, extern int duplicate_loop_to_header_edge (struct loop *, edge, struct loops *, unsigned, sbitmap, edge, edge *, unsigned *, int); -extern struct loop *loopify (struct loops *, edge, edge, basic_block, bool); +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 *); |