blob: 67a4f267afe2f7894636c92661fa21f6b66aaa46 [file] [log] [blame]
/* PR tree-optimization/18947 */
/* { dg-options "-fgnu89-inline" } */
int v;
extern __inline void f0 (void) { v++; }
extern __inline void f1 (void) { f0 (); }
void f4 (void) { f1 (); }
extern __inline void f2 (void) { f1 (); }
void f3 (void) { f2 (); }
void f2 (void) { f1 (); }