* gcc.dg/pr44974.c: Add noinline.
authorJan Hubicka <jh@suse.cz>
Wed, 31 Oct 2012 23:10:22 +0000 (00:10 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Wed, 31 Oct 2012 23:10:22 +0000 (23:10 +0000)
From-SVN: r193050

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr44974.c

index 66ef4877eeb5b7a6db02dbdc6d94f9a08d44b615..29a9bfbb0c54b2fb0f03f03d9ed317e05ac72cc7 100644 (file)
@@ -1,3 +1,7 @@
+2012-10-31  Jan Hubicka  <jh@suse.cz>
+
+       * gcc.dg/pr44974.c: Add noinline.
+
 2012-10-31  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/53718
index 14e43ece3c2dbfd33e71b73503e1c3d26ef62ff5..a16c558331bcb4349f8c8640c3c40442251c6cdf 100644 (file)
@@ -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)