1 /* { dg-require-effective-target int32plus } */
2 /* { dg-options "-O2 -fgraphite-identity -floop-block" } */
3 
4 int buffer[256*256];
main(void)5 int main(void)
6 {
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;
13 }
14