URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [920415-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern void exit (int); #ifndef NO_LABEL_VALUES f () { __label__ l; void *x() { return &&l; } goto *x (); abort (); return; l: exit (0); } #else int x; #endif
Go to most recent revision | Compare with Previous | Blame | View Log