modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.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 }