Closed as not planned
Description
$ cat test.c
void test(float **indices, float init_i, int M, int K) {
for (int j = 0; j < K; ++j) {
for (int i = 0; i < M; ++i) {
indices[i][j] = init_i + i;
}
}
}
$ clang -O2 -S test.c -emit-llvm -mllvm -enable-loopinterchange=true -mllvm -debug-only=loop-interchange
There is not oputput.