OSDN Git Service

* gcc.dg/pr44974.c: Add noinline.
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 31 Oct 2012 23:10:22 +0000 (23:10 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 31 Oct 2012 23:10:22 +0000 (23:10 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193050 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 66ef487..29a9bfb 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 14e43ec..a16c558 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)