aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr44974.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2012-11-01 00:10:22 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2012-10-31 23:10:22 +0000
commit2a381a57f3061e171923a14083ac37d957c9c98d (patch)
tree2cfae026616c067426509dd3fbb2b67f09e16fc4 /gcc/testsuite/gcc.dg/pr44974.c
parentdbbb73ddb8578a89741dbfe5741093281048feab (diff)
downloadgcc-2a381a57f3061e171923a14083ac37d957c9c98d.zip
gcc-2a381a57f3061e171923a14083ac37d957c9c98d.tar.gz
gcc-2a381a57f3061e171923a14083ac37d957c9c98d.tar.bz2
* gcc.dg/pr44974.c: Add noinline.
From-SVN: r193050
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr44974.c')
-rw-r--r--gcc/testsuite/gcc.dg/pr44974.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gcc.dg/pr44974.c b/gcc/testsuite/gcc.dg/pr44974.c
index 14e43ec..a16c558 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)