From: Richard Biener Date: Wed, 6 Feb 2013 13:16:35 +0000 (+0000) Subject: tracer.c (tracer): Mark loops with LOOPS_NEED_FIXUP instead of calling fix_loop_struc... X-Git-Tag: releases/gcc-4.8.0~583 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a44bbd4889dc54e3f36ae97b16741ebb4378431f;p=thirdparty%2Fgcc.git tracer.c (tracer): Mark loops with LOOPS_NEED_FIXUP instead of calling fix_loop_structure. 2013-02-06 Richard Biener * tracer.c (tracer): Mark loops with LOOPS_NEED_FIXUP instead of calling fix_loop_structure. From-SVN: r195804 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0865a81addf9..00a3ea25a1f4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-02-06 Richard Biener + + * tracer.c (tracer): Mark loops with LOOPS_NEED_FIXUP + instead of calling fix_loop_structure. + 2013-02-06 Jakub Jelinek PR middle-end/56217 diff --git a/gcc/tracer.c b/gcc/tracer.c index c7b9d964b9f1..975cadb9285a 100644 --- a/gcc/tracer.c +++ b/gcc/tracer.c @@ -380,9 +380,9 @@ tracer (void) if (changed) { free_dominance_info (CDI_DOMINATORS); - calculate_dominance_info (CDI_DOMINATORS); + /* If we changed the CFG schedule loops for fixup by cleanup_cfg. */ if (current_loops) - fix_loop_structure (NULL); + loops_state_set (LOOPS_NEED_FIXUP); } if (dump_file)