[llvm] [VPlan] Create VectorEndPointer with full NW flags (PR #151558)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 4 01:49:01 PDT 2025
================
@@ -2594,9 +2595,7 @@ void VPlanTransforms::createInterleaveGroups(
if (IG->isReverse()) {
auto *ReversePtr = new VPVectorEndPointerRecipe(
Addr, &Plan.getVF(), getLoadStoreType(IRInsertPos),
- -(int64_t)IG->getFactor(),
- InBounds ? GEPNoWrapFlags::inBounds() : GEPNoWrapFlags::none(),
- InsertPos->getDebugLoc());
+ -(int64_t)IG->getFactor(), NW, InsertPos->getDebugLoc());
----------------
lukel97 wrote:
Oh I had missed how this passes in a negative stride, ignore my review comment.
https://github.com/llvm/llvm-project/pull/151558
More information about the llvm-commits
mailing list