diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2005-08-24 09:56:56 +0200 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2005-08-24 07:56:56 +0000 |
commit | b9a6624012d373b43c70193b13fd226f7e5b4c24 (patch) | |
tree | bc85c149f3a2ee968ec2f35b28ea170572c7b44d /gcc/tree-ssa-threadupdate.c | |
parent | 87de2376fdeee0702f6df2ed1ec96681796640a6 (diff) | |
download | gcc-b9a6624012d373b43c70193b13fd226f7e5b4c24.zip gcc-b9a6624012d373b43c70193b13fd226f7e5b4c24.tar.gz gcc-b9a6624012d373b43c70193b13fd226f7e5b4c24.tar.bz2 |
bb-reorder.c (copy_bb, [...]): Add argument to duplicate_block.
* bb-reorder.c (copy_bb, duplicate_computed_gotos): Add argument
to duplicate_block.
* cfghooks.c (duplicate_block): Added position where to place
new block as argument.
* cfghooks.h (duplicate_block): Declaration changed.
* cfglayout.c (copy_bbs): Add argument after. Pass it to
duplicate_block.
* cfglayout.h (copy_bbs): Declaration changed.
* cfgloop.h (loop_version): Declaration changed.
* cfgloopmanip.c (duplicate_loop_to_header_edge): Pass
position to copy_bbs.
(loop_version): Pass position to duplicate_loop_to_header_edge.
Add place_after argument and position new blocks according to
it.
* modulo-sched.c (sms_schedule): Pass place_after argument
to loop_version.
* tracer.c (tail_duplicate): Pass argument to duplicate_block.
* tree-cfg.c (split_edge_bb_loc): New function.
(tree_split_edge, tree_duplicate_sese_region): Use split_edge_bb_loc
to determine position of new blocks.
* tree-ssa-loop-unswitch.c (tree_unswitch_loop): Pass argument
to loop_version.
* tree-ssa-threadupdate.c (create_block_for_threading): Pass
argument to duplicate_block.
* tree-vectorizer.c (slpeel_tree_duplicate_loop_to_edge_cfg):
Pass position to copy_bbs.
From-SVN: r103437
Diffstat (limited to 'gcc/tree-ssa-threadupdate.c')
-rw-r--r-- | gcc/tree-ssa-threadupdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c index ab748ad..1b7733b 100644 --- a/gcc/tree-ssa-threadupdate.c +++ b/gcc/tree-ssa-threadupdate.c @@ -199,7 +199,7 @@ create_block_for_threading (basic_block bb, struct redirection_data *rd) { /* We can use the generic block duplication code and simply remove the stuff we do not need. */ - rd->dup_block = duplicate_block (bb, NULL); + rd->dup_block = duplicate_block (bb, NULL, NULL); /* Zero out the profile, since the block is unreachable for now. */ rd->dup_block->frequency = 0; |