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