summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr40157.c
blob: 513958fe58f452b7c1c3026d2ffdea23e20b9b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { 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;
}