modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr39834.c (about) 1 /* { dg-options "-Winline" } */ 2 void quit_mined (); 3 void bottom_line (); 4 typedef enum { False, True } FLAG; 5 inline void 6 nextfile (FLAG exitiflast) 7 { 8 if (exitiflast) 9 quit_mined (); 10 else 11 bottom_line (); 12 nextfile (True); 13 }