[gcc/]
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / pr40157.c
blob513958fe58f452b7c1c3026d2ffdea23e20b9b17
1 /* { dg-require-effective-target int32plus } */
2 /* { dg-options "-O2 -fgraphite-identity -floop-block" } */
4 int buffer[256*256];
5 int main(void)
7 int *dest = buffer;
8 int x, y;
9 for(x = 0; x < 256; x++)
10 for(y = 0; y < 256; y++)
11 *dest++ = 0;
12 return 0;