add support for generating ASTs from schedule relations
[isl.git] / test_inputs / codegen / cloog / logo.c
blobea2a3c1b4982bff1ab2e351cca08ea2a5a11c943
2 for (int c1 = 0; c1 <= 7; c1 += 1)
3 S1(1, c1);
4 for (int c0 = 2; c0 <= 6; c0 += 1) {
5 for (int c1 = 0; c1 <= c0 - 2; c1 += 1)
6 S2(c0, c1);
7 for (int c1 = c0 - 1; c1 <= 4; c1 += 1) {
8 S1(c0, c1);
9 S2(c0, c1);
11 for (int c1 = 5; c1 <= 7; c1 += 1)
12 S1(c0, c1);
14 for (int c0 = 7; c0 <= 8; c0 += 1)
15 for (int c1 = c0 - 1; c1 <= 7; c1 += 1)
16 S1(c0, c1);