blob: dd8d3a81b08e97453416ed0addae39e2eacf2707 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Winline -O2 --param large-function-growth=0 --param large-function-insns=1" } */
void big (void);
inline int q(void)
{ /* { dg-warning "large-function-growth" } */
big();
big();
big();
big();
big();
big();
big();
big();
big();
big();
}
inline int t (void)
{
return q () + 1; /* { dg-warning "called from here" } */
}