add support for generating ASTs from schedule relations
[platform/upstream/isl.git] / test_inputs / codegen / cloog / reservoir-fusion2.c
1 if (N >= 1) {
2   for (int c3 = 1; c3 <= M; c3 += 1)
3     S1(1, c3);
4   for (int c1 = 2; c1 <= N; c1 += 1) {
5     for (int c3 = 1; c3 <= M; c3 += 1)
6       S2(c1 - 1, c3);
7     for (int c3 = 1; c3 <= M; c3 += 1)
8       S1(c1, c3);
9   }
10   for (int c3 = 1; c3 <= M; c3 += 1)
11     S2(N, c3);
12 }