[llvm] LAA: add missed swap when inverting src, sink (PR #122254)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 13 03:17:04 PST 2025
================
@@ -1921,6 +1921,7 @@ MemoryDepChecker::getDependenceDistanceStrideAndSize(
if (StrideAPtr && *StrideAPtr < 0) {
std::swap(Src, Sink);
std::swap(AInst, BInst);
+ std::swap(ATy, BTy);
----------------
fhahn wrote:
Thanks for adding the test, it shows an improvement instead of fix of miscompile, but that's great!
https://github.com/llvm/llvm-project/pull/122254
More information about the llvm-commits
mailing list