From: Eric Botcazou Date: Mon, 24 Sep 2018 08:15:53 +0000 (+0000) Subject: Fix thinko X-Git-Tag: releases/gcc-7.4.0~146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bdfe954afef02dc960e12672246ba4f1c1e35bd;p=thirdparty%2Fgcc.git Fix thinko From-SVN: r264524 --- 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];