* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / run-id-pr47653.c
blobcd9d8ebcb166227df411acbd43c2413d7ed35b97
1 /* { dg-options "-O -fstack-check=generic -ftree-pre -fgraphite-identity" } */
2 /* nvptx doesn't expose a stack. */
3 /* { dg-skip-if "" { nvptx-*-* } } */
5 int main ()
7 int i, j;
8 int x[8][8];
9 for (i = 0; i < 8; i++)
10 for (j = i; j < 8; j++)
11 x[i][j] = 4;
13 for (i = 0; i < 8; i++)
14 for (j = i; j < 8; j++)
15 if (x[i][j] != 4)
16 __builtin_abort ();
18 return 0;