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.
9 lines
213 B
C
9 lines
213 B
C
for (int c0 = M + 1; c0 <= 2 * M; c0 += 1)
|
|
S1(-M + c0);
|
|
for (int c0 = 2 * M + 1; c0 <= M + N; c0 += 1) {
|
|
S1(-M + c0);
|
|
S2(-2 * M + c0);
|
|
}
|
|
for (int c0 = M + N + 1; c0 <= 2 * M + N; c0 += 1)
|
|
S2(-2 * M + c0);
|