diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-08-14 16:01:10 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-08-14 16:01:10 +0000 |
commit | cc360b36dfccb7179f0ff2d01bfeb5161237aaae (patch) | |
tree | 4464f678351d15a2ac886efa3d2f24239ee68188 /gcc/tree-cfgcleanup.c | |
parent | 2ba31c054ff58914b68ff5e8abe3e48d46e14658 (diff) | |
download | gcc-cc360b36dfccb7179f0ff2d01bfeb5161237aaae.zip gcc-cc360b36dfccb7179f0ff2d01bfeb5161237aaae.tar.gz gcc-cc360b36dfccb7179f0ff2d01bfeb5161237aaae.tar.bz2 |
graphite-scop-detection.c (create_sese_edges): Compute dominance info before trying to fix loop structure.
* graphite-scop-detection.c (create_sese_edges): Compute dominance
info before trying to fix loop structure.
* cfgloopmanip.c (fix_loop_structure): Require fast DOM queries.
* tree-cfgcleanup.c (repair_loop_structures): Likewise.
* cfgloop.c (verify_loop_structure): Verify loop fathers.
From-SVN: r190390
Diffstat (limited to 'gcc/tree-cfgcleanup.c')
-rw-r--r-- | gcc/tree-cfgcleanup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree-cfgcleanup.c b/gcc/tree-cfgcleanup.c index b665c58..45f3368 100644 --- a/gcc/tree-cfgcleanup.c +++ b/gcc/tree-cfgcleanup.c @@ -737,6 +737,8 @@ repair_loop_structures (void) { bitmap changed_bbs; + calculate_dominance_info (CDI_DOMINATORS); + timevar_push (TV_REPAIR_LOOPS); changed_bbs = BITMAP_ALLOC (NULL); fix_loop_structure (changed_bbs); |