URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [noncompile/] [pr16876.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "-O -finline-functions" } */ static void g(); struct bigstack { char space[4096]; }; void f() { g(0); /* { dg-error "incompatible type for argument 1 of 'g'" } */ } static void g(struct bigstack bstack) { g(bstack); }
Go to most recent revision | Compare with Previous | Blame | View Log