URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr29330.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/29330 */ /* { dg-do compile } */ /* { dg-options "-O -ftree-loop-linear -std=gnu99" } */ int buf[2][2][2][2]; void f (void) { for (int a = 0; a < 2; ++a) for (int b = 0; b < 2; ++b) for (int c = 0; c < 2; ++c) for (int d = 0; d < 2; ++d) buf[a][b][c][d] = 0; }
Go to most recent revision | Compare with Previous | Blame | View Log