]> gcc.gnu.org Git - gcc.git/commitdiff
Fix thinko
authorEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 24 Sep 2018 08:15:53 +0000 (08:15 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 24 Sep 2018 08:15:53 +0000 (08:15 +0000)
From-SVN: r264524

gcc/testsuite/gcc.dg/nested-func-11.c

index 01096b4147f6a8e082d5520be8649aaaf561beb2..2ebc27261b45ddd51241553bfb21cf5047f1012f 100644 (file)
@@ -1,16 +1,16 @@
 /* { dg-do run } */
 /* { dg-options "-O2 -fno-omit-frame-pointer" } */
 
-int __attribute__((noipa)) foo (int i)
+int __attribute__((noclone,noinline)) foo (int i)
 {
   int a;
 
-  void __attribute__((noipa)) nested2 (int i)
+  void __attribute__((noclone,noinline)) nested2 (int i)
   {
     a = i;
   }
 
-  void  __attribute__((noipa)) nested1 (int i)
+  void  __attribute__((noclone,noinline)) nested1 (int i)
   {
     int b[32];
 
This page took 0.086344 seconds and 5 git commands to generate.