diff options
author | Steve Ellcey <sellcey@imgtec.com> | 2013-05-16 17:09:40 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2013-05-16 17:09:40 +0000 |
commit | f14540b6352b1a164ef79ae36d1ae1463efdac46 (patch) | |
tree | 0417eb55c06e17bb692b965567279eb2722fc0d5 /gcc/tree-ssa-loop-ch.c | |
parent | 45f9820f0075149dcbbe71eac97bf31993e9f9df (diff) | |
download | gcc-f14540b6352b1a164ef79ae36d1ae1463efdac46.zip gcc-f14540b6352b1a164ef79ae36d1ae1463efdac46.tar.gz gcc-f14540b6352b1a164ef79ae36d1ae1463efdac46.tar.bz2 |
cfghooks.c (copy_bbs): Add update_dominance argument.
2013-05-16 Steve Ellcey <sellcey@imgtec.com>
* cfghooks.c (copy_bbs): Add update_dominance argument.
* cfghooks.h (copy_bbs): Update prototype.
* tree-cfg.c (gimple_duplicate_sese_region):
Add update_dominance argument.
* tree-flow.h (gimple_duplicate_sese_region): Update prototype.
* tree-ssa-loop-ch.c (copy_loop_headers): Update
gimple_duplicate_sese_region call.
* tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg):
Update copy_bbs call.
* cfgloopmanip.c (duplicate_loop_to_header_edge): Ditto.
* trans-mem.c (ipa_uninstrument_transaction): Ditto.
From-SVN: r198980
Diffstat (limited to 'gcc/tree-ssa-loop-ch.c')
-rw-r--r-- | gcc/tree-ssa-loop-ch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-ch.c b/gcc/tree-ssa-loop-ch.c index a1d0299..ff17c7e 100644 --- a/gcc/tree-ssa-loop-ch.c +++ b/gcc/tree-ssa-loop-ch.c @@ -197,7 +197,8 @@ copy_loop_headers (void) entry = loop_preheader_edge (loop); propagate_threaded_block_debug_into (exit->dest, entry->dest); - if (!gimple_duplicate_sese_region (entry, exit, bbs, n_bbs, copied_bbs)) + if (!gimple_duplicate_sese_region (entry, exit, bbs, n_bbs, copied_bbs, + true)) { fprintf (dump_file, "Duplication failed.\n"); continue; |