2013-05-06 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / noreturn-8.c
blob1e75633c81209f18cd03607bfaf069ac6d4ba026
1 /* { dg-do run { target nonpic } } */
2 /* { dg-options "-O2" } */
3 void exit (int);
4 void noreturn_autodetection_failed ();
5 __attribute__ ((noinline))
6 detect_noreturn ()
8 exit (0);
10 int
11 main (void)
13 detect_noreturn ();
14 noreturn_autodetection_failed ();
15 return 0;