1 /* { dg-options "-fno-early-inlining" } */
2 /* { dg-require-effective-target non_strict_prototype } */
3 
4 void
bar()5 bar ()
6 {
7   bar (0);
8 }
9 
10 __attribute__ ((flatten))
foo()11 void foo ()
12 {
13   bar ();
14 }
15