add support for generating ASTs from schedule relations
[isl.git] / test_inputs / codegen / cloog / dot2.c
blobf36aae20e22c2d2b749c1269eafc4a31dfe0e7e9
2 for (int c0 = 1; c0 <= min(N, M); c0 += 1) {
3 S1(c0);
4 for (int c1 = 1; c1 <= M; c1 += 1)
5 S2(c0, c1);
7 for (int c0 = M + 1; c0 <= N; c0 += 1)
8 for (int c1 = 1; c1 <= M; c1 += 1)
9 S2(c0, c1);
10 for (int c0 = N + 1; c0 <= M; c0 += 1)
11 S1(c0);