URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [930406-1.c] - Rev 12
Compare with Previous | Blame | View Log
f() { int x = 1; #if defined(STACK_SIZE) char big[STACK_SIZE/2]; #else char big[0x1000]; #endif ({ __label__ mylabel; mylabel: x++; if (x != 3) goto mylabel; }); exit(0); } main() { f(); }