OSDN Git Service

PR rtl-optimization/51069
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 1 Jan 2012 12:07:34 +0000 (12:07 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 1 Jan 2012 12:07:34 +0000 (12:07 +0000)
* cfgloopmanip.c (remove_path): Removing path making irreducible
region unconditional makes BB part of the region.
* gcc.c-torture/compile/pr51069.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182767 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cfgloopmanip.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr51069.c [new file with mode: 0644]

index fec1dec..f0a850d 100644 (file)
@@ -1,3 +1,9 @@
+2012-01-01  Jan Hubicka  <jhjh@suse.cz>
+
+       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  <jakub@redhat.com>
 
        PR tree-optimization/51683
index 1824421..9675417 100644 (file)
@@ -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))
index 6e81414..7cc8411 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-01  Jan Hubicka  <jh@suse.cz>
+
+       PR rtl-optimization/51069
+       * gcc.c-torture/compile/pr51069.c: New testcase.
+
 2012-01-01  Jakub Jelinek  <jakub@redhat.com>
 
        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 (file)
index 0000000..4fdc52f
--- /dev/null
@@ -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 (;;)
+          ;
+    }
+}
+
+