[llvm] [LoopInterchange] Bail out for Scalar Dependencies (PR #119345)
Ryotaro Kasuga via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 10 03:20:11 PST 2024
================
@@ -187,11 +187,19 @@ static void interChangeDependencies(CharMatrix &DepMatrix, unsigned FromIndx,
// if the direction matrix, after the same permutation is applied to its
// columns, has no ">" direction as the leftmost non-"=" direction in any row.
static bool isLexicographicallyPositive(std::vector<char> &DV) {
+ bool HasScalar = false;
----------------
kasuga-fj wrote:
nit: unused?
https://github.com/llvm/llvm-project/pull/119345
More information about the llvm-commits
mailing list