https://github.com/fmayer updated https://github.com/llvm/llvm-project/pull/120730
>From 5987219575feabd0eefba5932c21b0eba8ae4fb7 Mon Sep 17 00:00:00 2001 From: Florian Mayer <fma...@google.com> Date: Fri, 20 Dec 2024 05:35:56 -0800 Subject: [PATCH] simplify Created using spr 1.3.4 --- llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp index 0768eccc8aeb35..ffd89466abeea9 100644 --- a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp +++ b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp @@ -1986,12 +1986,12 @@ void VPReverseVectorPointerRecipe::execute(VPTransformState &State) { // LastLane = 1 - RunTimeVF Value *LastLane = Builder.CreateSub(ConstantInt::get(IndexTy, 1), RunTimeVF); Value *Ptr = State.get(getOperand(0), VPLane(0)); - Value *ResultPtr = Builder.CreateGEP( - IndexedTy, Ptr, NumElt, "", - getGEPNoWrapFlags().withoutInBounds().withoutNoUnsignedSignedWrap()); - ResultPtr = Builder.CreateGEP( - IndexedTy, ResultPtr, LastLane, "", - getGEPNoWrapFlags().withoutInBounds().withoutNoUnsignedSignedWrap()); + Value *ResultPtr = + Builder.CreateGEP(IndexedTy, Ptr, NumElt, "", + getGEPNoWrapFlags().withoutNoUnsignedSignedWrap()); + ResultPtr = + Builder.CreateGEP(IndexedTy, ResultPtr, LastLane, "", + getGEPNoWrapFlags().withoutNoUnsignedSignedWrap()); State.set(this, ResultPtr, /*IsScalar*/ true); } _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits