summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorFlorian Hahn <florian.hahn@arm.com>2018-11-14 13:33:44 +0000
committerFlorian Hahn <florian.hahn@arm.com>2018-11-14 13:33:44 +0000
commit02cb67deb9644f8df8665c856e3a84d1fd83eb92 (patch)
tree1a169e532af6c576c01b8bbb131e9a4eab4f4c35 /llvm/lib/Transforms
parente414b0387846653902cacacfc2d76fbed1fc26a4 (diff)
downloadbcm5719-llvm-02cb67deb9644f8df8665c856e3a84d1fd83eb92.tar.gz
bcm5719-llvm-02cb67deb9644f8df8665c856e3a84d1fd83eb92.zip
[VPlan] Remove LLVM_DEBUG from VPlanSlp::dumpBundle.
The caller should take care of only calling it with debug enabled. llvm-svn: 346860
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Vectorize/VPlanSLP.cpp8
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) {
OpenPOWER on IntegriCloud