@@ -1678,8 +1678,7 @@ class VPWidenIntrinsicRecipe : public VPRecipeWithIRFlags {
16781678
16791679public:
16801680 VPWidenIntrinsicRecipe (CallInst &CI, Intrinsic::ID VectorIntrinsicID,
1681- ArrayRef<VPValue *> CallArguments, Type *Ty,
1682- DebugLoc DL = {})
1681+ ArrayRef<VPValue *> CallArguments, Type *Ty)
16831682 : VPRecipeWithIRFlags(VPDef::VPWidenIntrinsicSC, CallArguments, CI),
16841683 VectorIntrinsicID (VectorIntrinsicID), ResultTy(Ty),
16851684 MayReadFromMemory(CI.mayReadFromMemory()),
@@ -1690,7 +1689,7 @@ class VPWidenIntrinsicRecipe : public VPRecipeWithIRFlags {
16901689 ArrayRef<VPValue *> CallArguments, Type *Ty,
16911690 bool MayReadFromMemory, bool MayWriteToMemory,
16921691 bool MayHaveSideEffects, DebugLoc DL = {})
1693- : VPRecipeWithIRFlags(VPDef::VPWidenIntrinsicSC, CallArguments),
1692+ : VPRecipeWithIRFlags(VPDef::VPWidenIntrinsicSC, CallArguments, DL ),
16941693 VectorIntrinsicID(VectorIntrinsicID), ResultTy(Ty),
16951694 MayReadFromMemory(MayReadFromMemory),
16961695 MayWriteToMemory(MayWriteToMemory),
@@ -1701,7 +1700,7 @@ class VPWidenIntrinsicRecipe : public VPRecipeWithIRFlags {
17011700 VPWidenIntrinsicRecipe *clone () override {
17021701 return new VPWidenIntrinsicRecipe (*cast<CallInst>(getUnderlyingValue ()),
17031702 VectorIntrinsicID, {op_begin (), op_end ()},
1704- ResultTy, getDebugLoc () );
1703+ ResultTy);
17051704 }
17061705
17071706 VP_CLASSOF_IMPL (VPDef::VPWidenIntrinsicSC)
0 commit comments