]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/noreturn-8.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / noreturn-8.c
CommitLineData
173536ed 1/* { dg-do run { target nonpic } } */
73add7fe
JH
2/* { dg-options "-O2" } */
3void exit (int);
4void noreturn_autodetection_failed ();
8ece1ab3 5__attribute__ ((noinline)) int
73add7fe
JH
6detect_noreturn ()
7{
8 exit (0);
9}
10int
11main (void)
12{
13 detect_noreturn ();
14 noreturn_autodetection_failed ();
15 return 0;
16}