@@ -1320,12 +1320,6 @@ class VPWidenRecipe : public VPRecipeWithIRFlags, public VPIRMetadata {
13201320 : VPRecipeWithIRFlags(VPDefOpcode, Operands, WrapFlagsTy(NUW, NSW), DL),
13211321 Opcode(Opcode) {}
13221322
1323- template <typename IterT>
1324- VPWidenRecipe (unsigned VPDefOpcode, unsigned Opcode,
1325- iterator_range<IterT> Operands, bool NUW, bool NSW, DebugLoc DL)
1326- : VPRecipeWithIRFlags(VPDefOpcode, Operands, WrapFlagsTy(NUW, NSW), DL),
1327- Opcode(Opcode) {}
1328-
13291323public:
13301324 VPWidenRecipe (Instruction &I, ArrayRef<VPValue *> Operands)
13311325 : VPWidenRecipe(VPDef::VPWidenSC, I, Operands) {}
@@ -2585,7 +2579,7 @@ class VPPartialReductionRecipe : public VPReductionRecipe {
25852579// / A recipe to represent inloop reduction operations with vector-predication
25862580// / intrinsics, performing a reduction on a vector operand with the explicit
25872581// / vector length (EVL) into a scalar value, and adding the result to a chain.
2588- // / The operands are {ChainOp, VecOp, EVL, [Condition]}.
2582+ // / The Operands are {ChainOp, VecOp, EVL, [Condition]}.
25892583class VPReductionEVLRecipe : public VPReductionRecipe {
25902584public:
25912585 VPReductionEVLRecipe (VPReductionRecipe &R, VPValue &EVL, VPValue *CondOp,
0 commit comments