"tests/runtime/test_datahandling.py" did not exist on "6373c03aeba2af10d15ee259677ae5f1d7d9a76f"
TODO
In combination with loop cutting/peeling I noticed a difference to the old backend. Previously loop counters got inlined, so the AST contained expressions like
if (n < n) {
// ...
}
which got elided by ISL.
Now, the loop counter is declared as a variable, i.e.
int i = n;
if (i < n) {
// ...
}
which can not be removed because we do not analyze declarations/assignments.
I think this is OK because these conditionals do not appear inside the loop. Anyway, I wanted to mention it.