Files
clang-p2996/polly/lib/External/isl/test_inputs/codegen/cloog/test.c
Michael Kruse 842314b5f0 [Polly] Update isl to isl-0.23-61-g24e8cd12.
This fixes llvm.org/PR48554

Some test cases had to be updated because the hash function for
union_maps have been changed which affects the output order.
2021-01-19 12:01:31 -06:00

16 lines
339 B
C

for (int c0 = 1; c0 <= 2; c0 += 1)
for (int c1 = 1; c1 <= M; c1 += 1)
S1(c0, c1);
for (int c0 = 3; c0 <= N; c0 += 1) {
for (int c1 = 1; c1 <= min(M, c0 - 1); c1 += 1)
S1(c0, c1);
if (M >= c0) {
S1(c0, c0);
S2(c0, c0);
}
for (int c1 = c0 + 1; c1 <= M; c1 += 1)
S1(c0, c1);
if (c0 >= M + 1)
S2(c0, c0);
}