URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20011023-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test whether tree inlining works with prototyped nested functions. */ extern void foo (char *x); void bar (void); void bar (void) { auto void baz (void); void baz (void) { char tmp[2]; foo (tmp); } baz (); }
Go to most recent revision | Compare with Previous | Blame | View Log