URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [loop-5.c] - Rev 298
Compare with Previous | Blame | View Log
/* PR c/16180 */ /* { dg-options "-O2" } */ extern int b; int foo (int a) { if (a) { b = 0; for(;;) goto L; } L: for(;;) return 0; }