diff options
Diffstat (limited to 'gcc/tree-ssa-threadbackward.c')
-rw-r--r-- | gcc/tree-ssa-threadbackward.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-ssa-threadbackward.c b/gcc/tree-ssa-threadbackward.c index e09ecb8..51f30a7 100644 --- a/gcc/tree-ssa-threadbackward.c +++ b/gcc/tree-ssa-threadbackward.c @@ -865,6 +865,8 @@ pass_early_thread_jumps::gate (function *fun ATTRIBUTE_UNUSED) unsigned int pass_early_thread_jumps::execute (function *fun) { + loop_optimizer_init (AVOID_CFG_MODIFICATIONS); + /* Try to thread each block with more than one successor. */ basic_block bb; FOR_EACH_BB_FN (bb, fun) @@ -873,6 +875,8 @@ pass_early_thread_jumps::execute (function *fun) find_jump_threads_backwards (bb, false); } thread_through_all_blocks (true); + + loop_optimizer_finalize (); return 0; } |