[llvm] [LAA] Scale strides using type-size (NFC) (PR #124529)

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 20 06:08:41 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;
----------------
Meinersbur wrote:

I see now, thanks.

https://github.com/llvm/llvm-project/pull/124529


More information about the llvm-commits mailing list