URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [pr40157.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-require-effective-target int32plus } */ /* { dg-options "-O2 -fgraphite-identity -floop-block" } */ int buffer[256*256]; int main(void) { int *dest = buffer; int x, y; for(x = 0; x < 256; x++) for(y = 0; y < 256; y++) *dest++ = 0; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log