[llvm] 72376e1 - [VPlan] Remove unused VPWidenIntrinsicRecipe constructor (NFC)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 12:25:00 PST 2025


Author: Florian Hahn
Date: 2025-03-06T20:24:30Z
New Revision: 72376e19df71bf7232e10896b80e19a29df5bd57

URL: https://github.com/llvm/llvm-project/commit/72376e19df71bf7232e10896b80e19a29df5bd57
DIFF: https://github.com/llvm/llvm-project/commit/72376e19df71bf7232e10896b80e19a29df5bd57.diff

LOG: [VPlan] Remove unused VPWidenIntrinsicRecipe constructor (NFC)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index b1288c42b20f2..b277ed4816b8e 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -1273,12 +1273,6 @@ class VPWidenIntrinsicRecipe : public VPRecipeWithIRFlags {
                          !Attrs.hasFnAttr(Attribute::WillReturn);
   }
 
-  VPWidenIntrinsicRecipe(Intrinsic::ID VectorIntrinsicID,
-                         std::initializer_list<VPValue *> CallArguments,
-                         Type *Ty, DebugLoc DL = {})
-      : VPWidenIntrinsicRecipe(VectorIntrinsicID,
-                               ArrayRef<VPValue *>(CallArguments), Ty, DL) {}
-
   ~VPWidenIntrinsicRecipe() override = default;
 
   VPWidenIntrinsicRecipe *clone() override {


        


More information about the llvm-commits mailing list