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-7.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Winline -O2" } */ extern void *alloca (__SIZE_TYPE__); void big (void); inline void *q (void) { /* { dg-warning "(function not inlinable|alloca)" } */ return alloca (10); } inline void *t (void) { return q (); /* { dg-warning "called from here" } */ }