Backported from mainline
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.
+
PR rtl-optimization/88416
* valtrack.c (cleanup_auto_inc_dec): Handle pre/post-inc/dec/modify
even if !AUTO_INC_DEC.
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)
Backported from mainline
2018-12-13 Jakub Jelinek <jakub@redhat.com>
+ PR rtl-optimization/88470
+ * gcc.target/i386/pr88470.c: New test.
+
PR rtl-optimization/88416
* gcc.target/i386/pr88416.c: New test.
--- /dev/null
+/* 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;
+}