add support for generating ASTs from schedule relations
[isl.git] / test_inputs / codegen / cloog / test.c
blob84c84931e35f6670b3c0a830e6122bbed5a86436
2 for (int c0 = 1; c0 <= 2; c0 += 1)
3 for (int c1 = 1; c1 <= M; c1 += 1)
4 S1(c0, c1);
5 for (int c0 = 3; c0 <= N; c0 += 1) {
6 for (int c1 = 1; c1 <= min(M, c0 - 1); c1 += 1)
7 S1(c0, c1);
8 if (M >= c0) {
9 S1(c0, c0);
10 S2(c0, c0);
12 for (int c1 = c0 + 1; c1 <= M; c1 += 1)
13 S1(c0, c1);
14 if (c0 >= M + 1)
15 S2(c0, c0);