URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [winline-6.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Winline -O2 --param large-function-growth=0 --param large-function-insns=1" } */ void big (void); inline int q(void) { /* { dg-warning "large-function-growth" } */ big(); big(); big(); big(); big(); big(); big(); big(); big(); big(); } inline int t (void) { return q () + 1; /* { dg-warning "called from here" } */ }