diff options
-rw-r--r-- | llvm/lib/Transforms/Vectorize/VPlanSLP.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp b/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp index 5c6466215e6..bc8277a33a7 100644 --- a/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp +++ b/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp @@ -347,13 +347,13 @@ SmallVector<VPlanSlp::MultiNodeOpTy, 4> VPlanSlp::reorderMultiNodeOps() { } 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) { |