URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20040704-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* PR 16348: Make sure that condition-first false loops DTRT. */ extern void abort (); int main() { for (; 0 ;) { abort (); label: return 0; } goto label; }