URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [920501-4.c] - Rev 711
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef NO_LABEL_VALUES int x (int i) { static const void *j[] = {&& x, && y, && z}; goto *j[i]; x: return 2; y: return 3; z: return 5; } int main (void) { if ( x (0) != 2 || x (1) != 3 || x (2) != 5) abort (); exit (0); } #else int main (void) { exit (0); } #endif
Go to most recent revision | Compare with Previous | Blame | View Log