PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / winline-7.c
blob33ad74b43c16bfeeeab41b2d753e5c5f9f22b889
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2 -fgnu89-inline" } */
4 extern void *alloca (__SIZE_TYPE__);
6 void big (void);
7 inline void *q (void) /* { dg-warning "(function not inlinable|alloca)" } */
9 return alloca (10);
11 inline void *t (void)
13 return q (); /* { dg-warning "called from here" } */