PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / noreturn-8.c
blob294800baa0660399e3a281a6e540613ab1fe4d5d
1 /* { dg-do run { target nonpic } } */
2 /* { dg-options "-O2" } */
3 void exit (int);
4 void noreturn_autodetection_failed ();
5 __attribute__ ((noinline)) int
6 detect_noreturn ()
8 exit (0);
10 int
11 main (void)
13 detect_noreturn ();
14 noreturn_autodetection_failed ();
15 return 0;