Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / winline-7.c
blobbab82a2d6822adffd85ff04964f42d407bde01be
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2" } */
4 extern void *alloca (__SIZE_TYPE__);
6 void big (void);
7 inline void *q (void)
8 { /* { dg-warning "(function not inlinable|alloca)" } */
9 return alloca (10);
11 inline void *t (void)
13 return q (); /* { dg-warning "called from here" } */