re PR other/92997 (gcc.dg/torture/ftrapv-1.c fails starting with r279523)
authorRichard Biener <rguenther@suse.de>
Wed, 8 Jan 2020 14:07:55 +0000 (14:07 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 8 Jan 2020 14:07:55 +0000 (14:07 +0000)
2020-01-08  Richard Biener  <rguenther@suse.de>

PR testsuite/92997
* gcc.dg/torture/ftrapv-1.c (iaddv): Use noipa attribute.

From-SVN: r280003

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/ftrapv-1.c

index cb3c430..b504769 100644 (file)
@@ -1,3 +1,7 @@
+2020-01-08  Richard Biener  <rguenther@suse.de>
+
+       PR testsuite/92997
+
 2020-01-08  Richard Earnshaw  <rearnsha@arm.com>
 
        PR target/93188
index 66fa33f..145dd89 100644 (file)
@@ -13,7 +13,7 @@
 /* Disallow inlining/cloning which would constant propagate and trigger
    unrelated bugs.  */
 
-int __attribute__((noinline,noclone))
+int __attribute__((noipa))
 iaddv (int a, int b)
 {
   return a + b;