]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/winline-7.c.expected
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / winline-7.c.expected
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2" } */
3
4 extern void *alloca (__SIZE_TYPE__);
5
6 void big (void);
7 inline void *q (void)
8 {                               /* { dg-warning "(function not inlinable|alloca)" } */
9         return alloca (10);
10 }
11 inline void *t (void)
12 {
13         return q ();             /* { dg-warning "called from here" } */
14 }