URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [winline-7.c] - Rev 823
Go to most recent revision | 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" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log