Issue 127022
Summary debug-only not working for loop interchange pass
Labels new issue
Assignees
Reporter shanksjoe
    ```
$ 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.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to