URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [winline-5.c] - Rev 696
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Winline -O2 --param inline-unit-growth=0 --param large-unit-insns=0" } */ void big (void); inline int q(void) /* { dg-warning "inline-unit-growth" } */ { big(); big(); big(); big(); big(); big(); big(); big(); big(); big(); } int t (void) { return q (); /* { dg-warning "called from here" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log