We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ 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.
The text was updated successfully, but these errors were encountered:
Can you try -floop-interchange: https://godbolt.org/z/7Th93363b
-floop-interchange
Sorry, something went wrong.
#125830 would cause it. It appears that the -enable-loopinterchange is no longer referenced when clang is used.
-enable-loopinterchange
No branches or pull requests
There is not oputput.
The text was updated successfully, but these errors were encountered: