Remove the lambda framework and make -ftree-loop-linear an alias of -floop-interchange.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / graphite / pr36287.c
blob51b77c7157d6cd07dab0d3862424772685134b2d
1 /* { dg-do compile } */
2 /* { dg-options "-O -ftree-loop-linear" } */
4 int tab[2][2];
6 int foo ()
8 int i, j, k;
10 for (i = 0; i < 2; ++i)
11 for (j = 0; j < 2; ++j)
12 for (k = 0; k < 2; ++k)
15 for (i = 0; i < 2; ++i)
16 for (j = 0; j < 2; ++j)
17 if (i == 0)
18 tab[i][j] = 0;
20 return tab[0][1];