blob: 19262da7c5597615e64fdc7fd764f764e913f34f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Winline -O2" } */
extern void *alloca (__SIZE_TYPE__);
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" } */
}