Tobias Grosser 1de4e381ca Update isl to 94d707d
The major improvements are:

  - Extended schedule tree support
  - AST generation from schedule trees

llvm-svn: 232709
2015-03-19 07:27:29 +00:00

12 lines
272 B
C

for (int c0 = 0; c0 <= 99; c0 += 1) {
if (c0 >= 4 && c0 <= 6) {
for (int c1 = 0; c1 <= 99; c1 += 1)
A(c0, c1);
} else if (c0 >= 7) {
for (int c1 = 0; c1 <= 99; c1 += 1)
A(c0, c1);
} else
for (int c1 = 0; c1 <= 99; c1 += 1)
A(c0, c1);
}