[VPlan] Remove LLVM_DEBUG from VPlanSlp::dumpBundle.
The caller should take care of only calling it with debug enabled.
llvm-svn: 346860
diff --git a/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp b/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
index 5c64662..bc8277a 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
@@ -347,13 +347,13 @@
}
void VPlanSlp::dumpBundle(ArrayRef<VPValue *> Values) {
- LLVM_DEBUG(dbgs() << " Ops: ");
+ dbgs() << " Ops: ";
for (auto Op : Values)
if (auto *Instr = cast_or_null<VPInstruction>(Op)->getUnderlyingInstr())
- LLVM_DEBUG(dbgs() << *Instr << " | ");
+ dbgs() << *Instr << " | ";
else
- LLVM_DEBUG(dbgs() << " nullptr | ");
- LLVM_DEBUG(dbgs() << "\n");
+ dbgs() << " nullptr | ";
+ dbgs() << "\n";
}
VPInstruction *VPlanSlp::buildGraph(ArrayRef<VPValue *> Values) {