PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / winline-6.c
blob9e89976cffda65a944f837a3123a64dada706214
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2 --param large-function-growth=0 --param large-function-insns=1 -fgnu89-inline" } */
4 void big (void);
5 inline int q(void) /* { dg-warning "large-function-growth" } */
7 big();
8 big();
9 big();
10 big();
11 big();
12 big();
13 big();
14 big();
15 big();
16 big();
18 inline int t (void)
20 return q () + 1; /* { dg-message "called from here" } */