1 2 3 4 5 6 7 8 9 10 11 12 13
/* { dg-options "-O1 -Winline" } */ void quit_mined (); void bottom_line (); typedef enum { False, True } FLAG; inline void nextfile (FLAG exitiflast) { if (exitiflast) quit_mined (); else bottom_line (); nextfile (True); }