isl_ast_build_node_from_schedule: generate disjunctions outside isolated part
[isl.git] / test_inputs / codegen / isolate2.c
blobfda8033271971762e92d1b506d7df1517590f72b
1 for (int c0 = 0; c0 <= 99; c0 += 1) {
2 if (c0 >= 4 && c0 <= 6) {
3 for (int c1 = 0; c1 <= 99; c1 += 1)
4 A(c0, c1);
5 } else if (c0 >= 7 || c0 <= 3) {
6 if (c0 >= 7) {
7 for (int c1 = 0; c1 <= 99; c1 += 1)
8 A(c0, c1);
9 } else
10 for (int c1 = 0; c1 <= 99; c1 += 1)
11 A(c0, c1);