[PATCH] D124218: [LoadStoreVectorizer] Consider if operation is faster than before
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 18 15:49:02 PST 2022
arsenm accepted this revision.
arsenm added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp:1343
LLVM_DEBUG(dbgs() << "LSV: Target said misaligned is allowed? " << Allows
- << " and fast? " << Fast << "\n";);
- return !Allows || !Fast;
+ << " with relative speed = " << RelativeSpeed << "\n";);
+ return !Allows || !RelativeSpeed;
----------------
Single quote newline
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124218/new/
https://reviews.llvm.org/D124218
More information about the llvm-commits
mailing list