URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20021204-1.c] - Rev 297
Compare with Previous | Blame | View Log
/* PR c/7622 */ /* Verify that GCC can handle the mix of extern inline and nested functions. */ extern inline int t() { int q() { return 0; } return q(); } int foo() { return t(); }