re PR target/71554 (Miscompilation of __builtin_mul_overflow on i686)
authorJakub Jelinek <jakub@redhat.com>
Thu, 16 Jun 2016 10:20:45 +0000 (12:20 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 16 Jun 2016 10:20:45 +0000 (12:20 +0200)
PR target/71554
* gcc.c-torture/execute/pr71554.c: New test.

From-SVN: r237512

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr71554.c [new file with mode: 0644]

index e720868daa65db5c35383e3410b3f59db19767bc..b93a6896463d974c6e7c25c161c383b159ed6d58 100644 (file)
@@ -4,6 +4,7 @@
 
 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
 
+       PR target/71554
        * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
        (setcc + and peephole2): Likewise.
 
index 7362ecc111cdfc3f46e5e03ac926fddba67e698a..b4a20edf9d078800a6b7804fc47d81d30e11cb70 100644 (file)
@@ -1,5 +1,8 @@
 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
 
+       PR target/71554
+       * gcc.c-torture/execute/pr71554.c: New test.
+
        PR rtl-optimization/71532
        * gcc.dg/torture/pr71532.c: New test.
 
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr71554.c b/gcc/testsuite/gcc.c-torture/execute/pr71554.c
new file mode 100644 (file)
index 0000000..f0cb4bb
--- /dev/null
@@ -0,0 +1,28 @@
+/* PR target/71554 */
+
+int v;
+
+__attribute__ ((noinline, noclone)) void
+bar (void)
+{
+  v++;
+}
+
+__attribute__ ((noinline, noclone))
+void
+foo (unsigned int x)
+{
+  signed int y = ((-__INT_MAX__ - 1) / 2);
+  signed int r;
+  if (__builtin_mul_overflow (x, y, &r))
+    bar ();
+}
+
+int
+main ()
+{
+  foo (2);
+  if (v)
+    __builtin_abort ();
+  return 0;
+}