[llvm] 5f56eaf - [VPlan] Remove duplicated VPDerivedIVRecipe handling (NFC).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 30 14:30:04 PDT 2025


Author: Florian Hahn
Date: 2025-03-30T22:27:44+01:00
New Revision: 5f56eaff8b033e5d87818bdc9543c1463cc0a755

URL: https://github.com/llvm/llvm-project/commit/5f56eaff8b033e5d87818bdc9543c1463cc0a755
DIFF: https://github.com/llvm/llvm-project/commit/5f56eaff8b033e5d87818bdc9543c1463cc0a755.diff

LOG: [VPlan] Remove duplicated VPDerivedIVRecipe handling (NFC).

Also handled by an earlier, more general if above.

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlanUtils.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlanUtils.h b/llvm/lib/Transforms/Vectorize/VPlanUtils.h
index aa4f446cf06bc..87c5797d9e452 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanUtils.h
+++ b/llvm/lib/Transforms/Vectorize/VPlanUtils.h
@@ -54,8 +54,6 @@ inline bool isUniformAfterVectorization(const VPValue *VPV) {
            ((Instruction::isBinaryOp(VPI->getOpcode()) ||
              VPI->getOpcode() == VPInstruction::PtrAdd) &&
             all_of(VPI->operands(), isUniformAfterVectorization));
-  if (auto *IV = dyn_cast<VPDerivedIVRecipe>(VPV))
-    return all_of(IV->operands(), isUniformAfterVectorization);
 
   // VPExpandSCEVRecipes must be placed in the entry and are alway uniform.
   return isa<VPExpandSCEVRecipe>(VPV);


        


More information about the llvm-commits mailing list