From: Jan Hubicka Date: Wed, 31 Oct 2012 23:10:22 +0000 (+0100) Subject: * gcc.dg/pr44974.c: Add noinline. X-Git-Tag: releases/gcc-4.8.0~2363 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a381a57f3061e171923a14083ac37d957c9c98d;p=thirdparty%2Fgcc.git * gcc.dg/pr44974.c: Add noinline. From-SVN: r193050 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 66ef4877eeb5..29a9bfbb0c54 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-10-31 Jan Hubicka + + * gcc.dg/pr44974.c: Add noinline. + 2012-10-31 Janus Weil PR fortran/53718 diff --git a/gcc/testsuite/gcc.dg/pr44974.c b/gcc/testsuite/gcc.dg/pr44974.c index 14e43ece3c2d..a16c558331bc 100644 --- a/gcc/testsuite/gcc.dg/pr44974.c +++ b/gcc/testsuite/gcc.dg/pr44974.c @@ -2,9 +2,9 @@ /* { dg-do compile } */ /* { dg-options "-O -fno-optimize-sibling-calls" } */ -extern void foo (int status) __attribute__ ((__noreturn__)); -extern void bar (int status) __attribute__ ((__noreturn__)); -extern void _Exit (int status) __attribute__ ((__noreturn__)); +extern void foo (int status) __attribute__ ((__noreturn__,__noinline__)); +extern void bar (int status) __attribute__ ((__noreturn__,__noinline__)); +extern void _Exit (int status) __attribute__ ((__noreturn__,__noinline__)); void foo (int status)