Commit 2a381a57 by Jan Hubicka Committed by Jan Hubicka

* gcc.dg/pr44974.c: Add noinline.

From-SVN: r193050
parent dbbb73dd
2012-10-31 Jan Hubicka <jh@suse.cz>
* gcc.dg/pr44974.c: Add noinline.
2012-10-31 Janus Weil <janus@gcc.gnu.org> 2012-10-31 Janus Weil <janus@gcc.gnu.org>
PR fortran/53718 PR fortran/53718
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-O -fno-optimize-sibling-calls" } */ /* { dg-options "-O -fno-optimize-sibling-calls" } */
extern void foo (int status) __attribute__ ((__noreturn__)); extern void foo (int status) __attribute__ ((__noreturn__,__noinline__));
extern void bar (int status) __attribute__ ((__noreturn__)); extern void bar (int status) __attribute__ ((__noreturn__,__noinline__));
extern void _Exit (int status) __attribute__ ((__noreturn__)); extern void _Exit (int status) __attribute__ ((__noreturn__,__noinline__));
void void
foo (int status) foo (int status)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment