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/] [compile/] [pr23929.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/23929 */ extern void bar (char *); void foo (int n, char *z) { char b[2048]; int x, y; bar (b); for (y = 0; y < 60; y++) if (n == 600) for (x = 0; x < 320;) { *z++ = b[x]; x += 1; *z++ = b[x]; x += 1; } }
Go to most recent revision | Compare with Previous | Blame | View Log