isl_hash_{space,space_domain}: extract out shared parameter hashing
[isl.git] / test_inputs / codegen / cloog / test.c
blobf0544abdb6ed54b86a914ee67f8d060682dbf17c
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 (c0 >= M + 1) {
9 S2(c0, c0);
10 } else {
11 S1(c0, c0);
12 S2(c0, c0);
14 for (int c1 = c0 + 1; c1 <= M; c1 += 1)
15 S1(c0, c1);