isl_ast_build_ast_from_schedule: sort lower and upper bounds of for loops
[isl.git] / test_inputs / codegen / cloog / dot2.c
bloba1b10692c2a7a4003ae0a1d2078021641428910f
2 for (int c0 = 1; c0 <= min(M, N); c0 += 1) {
3 S1(c0);
4 for (int c1 = 1; c1 <= M; c1 += 1)
5 S2(c0, c1);
7 for (int c0 = N + 1; c0 <= M; c0 += 1)
8 S1(c0);
9 for (int c0 = M + 1; c0 <= N; c0 += 1)
10 for (int c1 = 1; c1 <= M; c1 += 1)
11 S2(c0, c1);