blob: 513958fe58f452b7c1c3026d2ffdea23e20b9b17 [file] [log] [blame]
/* { 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;
}