]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/winline-3.c
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / winline-3.c
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2 --param max-inline-insns-single=1" } */
3
4 void big (void);
5 inline int q(void)              
6 {                               /* { dg-warning "max-inline-insns-single" "" } */
7         big();
8         big();
9         big();
10         big();
11         big();
12         big();
13         big();
14         big();
15         big();
16         big();
17 }
18 inline int t (void)
19 {
20         return q ();             /* { dg-warning "called from here" "" } */
21 }