From: Jan Hubicka Date: Sun, 1 Jan 2012 12:07:34 +0000 (+0000) Subject: re PR rtl-optimization/51069 (ICE in verify_loop_structure, at cfgloop.c:1559) X-Git-Tag: releases/gcc-4.7.0~1255 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06f1716bd710974593f641e76e648fa54ad23c3a;p=thirdparty%2Fgcc.git re PR rtl-optimization/51069 (ICE in verify_loop_structure, at cfgloop.c:1559) PR rtl-optimization/51069 * cfgloopmanip.c (remove_path): Removing path making irreducible region unconditional makes BB part of the region. * gcc.c-torture/compile/pr51069.c: New testcase. From-SVN: r182767 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fec1dec22215..f0a850d48cc2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-01-01 Jan Hubicka + + PR rtl-optimization/51069 + * cfgloopmanip.c (remove_path): Removing path making irreducible + region unconditional makes BB part of the region. + 2012-01-01 Jakub Jelinek PR tree-optimization/51683 diff --git a/gcc/cfgloopmanip.c b/gcc/cfgloopmanip.c index 1824421f6168..967541756b5f 100644 --- a/gcc/cfgloopmanip.c +++ b/gcc/cfgloopmanip.c @@ -290,6 +290,7 @@ remove_path (edge e) int i, nrem, n_bord_bbs; sbitmap seen; bool irred_invalidated = false; + edge_iterator ei; if (!can_remove_branch_p (e)) return false; @@ -329,9 +330,13 @@ remove_path (edge e) /* Find "border" hexes -- i.e. those with predecessor in removed path. */ for (i = 0; i < nrem; i++) SET_BIT (seen, rem_bbs[i]->index); + if (!irred_invalidated) + FOR_EACH_EDGE (ae, ei, e->src->succs) + if (ae != e && ae->dest != EXIT_BLOCK_PTR && !TEST_BIT (seen, ae->dest->index) + && ae->flags & EDGE_IRREDUCIBLE_LOOP) + irred_invalidated = true; for (i = 0; i < nrem; i++) { - edge_iterator ei; bb = rem_bbs[i]; FOR_EACH_EDGE (ae, ei, rem_bbs[i]->succs) if (ae->dest != EXIT_BLOCK_PTR && !TEST_BIT (seen, ae->dest->index)) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6e8141412756..7cc841120a1c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-01-01 Jan Hubicka + + PR rtl-optimization/51069 + * gcc.c-torture/compile/pr51069.c: New testcase. + 2012-01-01 Jakub Jelinek PR tree-optimization/51683 diff --git a/gcc/testsuite/gcc.c-torture/compile/pr51069.c b/gcc/testsuite/gcc.c-torture/compile/pr51069.c new file mode 100644 index 000000000000..4fdc52f65fc1 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr51069.c @@ -0,0 +1,35 @@ + +int a, b, c, d, e, f, bar (void); + +void +foo (int x) +{ + for (;;) + { + if (!x) + { + for (d = 6; d >= 0; d--) + { + while (!b) + ; + if (e) + return foo (x); + if (f) + { + a = 0; + continue; + } + for (; c; c--) + ; + } + } + if (bar ()) + break; + e = 0; + if (x) + for (;;) + ; + } +} + +