Skip to content

Commit 7b25767

Browse files
committed
Fixup after merge.
1 parent f4afc2c commit 7b25767

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

llvm/lib/Transforms/Vectorize/VPlan.h

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
13291323
public:
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]}.
25892583
class VPReductionEVLRecipe : public VPReductionRecipe {
25902584
public:
25912585
VPReductionEVLRecipe(VPReductionRecipe &R, VPValue &EVL, VPValue *CondOp,

llvm/lib/Transforms/Vectorize/VPlanTransforms.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class PredicatedScalarEvolution;
2828
class TargetLibraryInfo;
2929
class VPBuilder;
3030
class VPRecipeBuilder;
31-
struct VPCostContext;
3231
struct VFRange;
3332

3433
extern cl::opt<bool> VerifyEachVPlan;

0 commit comments

Comments
 (0)