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/] [execute/] [920501-5.c] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef NO_LABEL_VALUES x (int i) { void *j[] = {&&x, &&y, &&z}; goto *j[i]; x:return 2; y:return 3; z:return 5; } main () { if (x (0) != 2 || x (1) != 3 || x (2) != 5) abort(); exit(0); } #else main(){ exit (0); } #endif
Go to most recent revision | Compare with Previous | Blame | View Log