]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR rtl-optimization/88470
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Dec 2018 23:33:57 +0000 (23:33 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Dec 2018 23:33:57 +0000 (23:33 +0000)
* cfgcleanup.c (outgoing_edges_match): If the function is
shrink-wrapped and bb1 ends with a JUMP_INSN with a single fake
edge to EXIT, return false.

* gcc.target/i386/pr88470.c: New test.

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

gcc/ChangeLog
gcc/cfgcleanup.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr88470.c [new file with mode: 0644]

index 98c6fc02dd01531ecf0f8ff57f82c7b022962344..3f1eeb7ba4182ece58051ee6c414be96dcc3a9fa 100644 (file)
@@ -1,3 +1,10 @@
+2018-12-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/88470
+       * cfgcleanup.c (outgoing_edges_match): If the function is
+       shrink-wrapped and bb1 ends with a JUMP_INSN with a single fake
+       edge to EXIT, return false.
+
 2018-12-13  Martin Sebor  <msebor@redhat.com>
 
        * doc/extend.texi: Consistently use @code for const and volatile
index bc4a78889db66adc7142e9a50d8a868a58f30052..1b5e931be0a483269c9cac89ce55f75dd2da03a5 100644 (file)
@@ -1592,10 +1592,13 @@ outgoing_edges_match (int mode, basic_block bb1, basic_block bb2)
   if (crtl->shrink_wrapped
       && single_succ_p (bb1)
       && single_succ (bb1) == EXIT_BLOCK_PTR_FOR_FN (cfun)
-      && !JUMP_P (BB_END (bb1))
+      && (!JUMP_P (BB_END (bb1))
+         /* Punt if the only successor is a fake edge to exit, the jump
+            must be some weird one.  */
+         || (single_succ_edge (bb1)->flags & EDGE_FAKE) != 0)
       && !(CALL_P (BB_END (bb1)) && SIBLING_CALL_P (BB_END (bb1))))
     return false;
-  
+
   /* If BB1 has only one successor, we may be looking at either an
      unconditional jump, or a fake edge to exit.  */
   if (single_succ_p (bb1)
index 2fe17d2d54e0f85ffba734ab05f84ea0b7874df9..b0dae2b68d89670c3626217d634b0b95398ac4cf 100644 (file)
@@ -1,3 +1,8 @@
+2018-12-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/88470
+       * gcc.target/i386/pr88470.c: New test.
+
 2018-12-13  Vladimir Makarov  <vmakarov@redhat.com>
 
        PR rtl-optimization/88414
diff --git a/gcc/testsuite/gcc.target/i386/pr88470.c b/gcc/testsuite/gcc.target/i386/pr88470.c
new file mode 100644 (file)
index 0000000..8d4400d
--- /dev/null
@@ -0,0 +1,16 @@
+/* PR rtl-optimization/88470 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -maccumulate-outgoing-args -ftrapv -fno-ivopts -fno-reorder-blocks-and-partition" } */
+
+void
+foo (long x, long *y)
+{
+  long *a = y - 64, i;
+  for (i = 0; i < x; i++)
+    {
+      long v = y[i];
+      *a++ = v;
+    }
+  register void **c __asm__ ("di");
+  goto **c;
+}