[PATCH] D101486: [Dependence Analysis] Enable delinearization of fixed sized arrays
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 30 09:11:49 PDT 2021
Meinersbur added a comment.
LGTM.
@bmahjour Please accept if you are happy as well.
================
Comment at: llvm/test/Analysis/DependenceAnalysis/Invariant.ll:9-13
+; float res= 0.0f;
+; for (int i = 0; i < 40; i += 5) {
+; for (int j = 0; j < 40; j += 5) {
+; float add = rr[j][j] + rr[i][j];
+; res = add > g? add : res;
----------------
[nit]
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D101486/new/
https://reviews.llvm.org/D101486
More information about the llvm-commits
mailing list