Skip to content

Commit 9943ab4

Browse files
committed
!fixup split off print changes.
1 parent 8c2bcfe commit 9943ab4

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

llvm/lib/Transforms/Vectorize/VPlan.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,12 +1154,6 @@ struct VPPhi : public VPInstruction, public VPPhiAccessors {
11541154

11551155
void execute(VPTransformState &State) override;
11561156

1157-
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1158-
/// Print the recipe.
1159-
void print(raw_ostream &O, const Twine &Indent,
1160-
VPSlotTracker &SlotTracker) const override;
1161-
#endif
1162-
11631157
protected:
11641158
const VPRecipeBase *getAsRecipe() const override { return this; }
11651159
};

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,17 +1135,6 @@ void VPPhi::execute(VPTransformState &State) {
11351135
State.set(this, Phi, VPLane(0));
11361136
}
11371137

1138-
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1139-
void VPPhi::print(raw_ostream &O, const Twine &Indent,
1140-
VPSlotTracker &SlotTracker) const {
1141-
O << Indent << "EMIT ";
1142-
printAsOperand(O, SlotTracker);
1143-
O << " = phi ";
1144-
1145-
printPhiOperands(O, SlotTracker);
1146-
}
1147-
#endif
1148-
11491138
VPIRInstruction *VPIRInstruction ::create(Instruction &I) {
11501139
if (auto *Phi = dyn_cast<PHINode>(&I))
11511140
return new VPIRPhi(*Phi);

0 commit comments

Comments
 (0)