From 3bdfe954afef02dc960e12672246ba4f1c1e35bd Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Mon, 24 Sep 2018 08:15:53 +0000 Subject: [PATCH] Fix thinko From-SVN: r264524 --- gcc/testsuite/gcc.dg/nested-func-11.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/testsuite/gcc.dg/nested-func-11.c b/gcc/testsuite/gcc.dg/nested-func-11.c index 01096b4147f6..2ebc27261b45 100644 --- a/gcc/testsuite/gcc.dg/nested-func-11.c +++ b/gcc/testsuite/gcc.dg/nested-func-11.c @@ -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]; -- 2.47.2