blob: 634016d2ecf6feed28eb72fe261db5ee77a9df1d [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Winline -O2" } */
void big (void);
inline void *q (void)
{ /* { dg-warning "(function not inlinable|alloca)" } */
return alloca (10);
}
inline void *t (void)
{
return q (); /* { dg-warning "called from here" } */
}