[llvm] [LAA] Scale strides using type-size (NFC) (PR #124529)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 05:47:50 PST 2025
================
@@ -2173,8 +2171,7 @@ MemoryDepChecker::isDependent(const MemAccessInfo &A, unsigned AIdx,
// We know that Dist is positive, but it may not be constant. Use the signed
// minimum for computations below, as this ensures we compute the closest
// possible dependence distance.
- uint64_t MinDistanceNeeded =
- TypeByteSize * *CommonStride * (MinNumIter - 1) + TypeByteSize;
+ uint64_t MinDistanceNeeded = *CommonStride * (MinNumIter - 1) + TypeByteSize;
----------------
artagnon wrote:
This is an incorrect simplification. Kindly see comments preceding this line.
https://github.com/llvm/llvm-project/pull/124529
More information about the llvm-commits
mailing list