[llvm] 8ff27bb - [VPlan] Remove unneeded select in VPWidenPointerInductionRecipe (NFC).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 15 10:34:54 PDT 2025


Author: Florian Hahn
Date: 2025-03-15T17:34:23Z
New Revision: 8ff27bbd8449bbb8619b1539c5edd3be203d9d31

URL: https://github.com/llvm/llvm-project/commit/8ff27bbd8449bbb8619b1539c5edd3be203d9d31
DIFF: https://github.com/llvm/llvm-project/commit/8ff27bbd8449bbb8619b1539c5edd3be203d9d31.diff

LOG: [VPlan] Remove unneeded select in VPWidenPointerInductionRecipe (NFC).

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
index d97805d874955..d5830aa3b3b6c 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
@@ -3364,7 +3364,7 @@ void VPWidenPointerInductionRecipe::execute(VPTransformState &State) {
   if (CurrentPart == 0) {
     // The recipe represents the first part of the pointer induction. Create the
     // GEP to increment the phi across all unrolled parts.
-    unsigned UF = CurrentPart == 0 ? getParent()->getPlan()->getUF() : 1;
+    unsigned UF = getParent()->getPlan()->getUF();
     Value *NumUnrolledElems =
         State.Builder.CreateMul(RuntimeVF, ConstantInt::get(PhiType, UF));
 


        


More information about the llvm-commits mailing list