summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2015-10-03 20:45:01 +0000
committerSanjay Patel <spatel@rotateright.com>2015-10-03 20:45:01 +0000
commitacd4baefcaa8a0020814be41414f3fef3803aad2 (patch)
treef94cfd6d0d612a418f199eda0fafa4c38d618ed8 /llvm/lib/CodeGen
parent4961936d1a8fdb945a7a354619d2a5082f1d4b7c (diff)
downloadbcm5719-llvm-acd4baefcaa8a0020814be41414f3fef3803aad2.tar.gz
bcm5719-llvm-acd4baefcaa8a0020814be41414f3fef3803aad2.zip
include equal sign in debug equations; NFC
llvm-svn: 249248
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/MachineCombiner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineCombiner.cpp b/llvm/lib/CodeGen/MachineCombiner.cpp
index 3a20d15880f..89e0c7b8deb 100644
--- a/llvm/lib/CodeGen/MachineCombiner.cpp
+++ b/llvm/lib/CodeGen/MachineCombiner.cpp
@@ -249,9 +249,9 @@ bool MachineCombiner::improvesCriticalPathLen(
<< " NewRootLatency: " << NewRootLatency << "\n";
dbgs() << " RootDepth: " << RootDepth << " RootLatency: " << RootLatency
<< " RootSlack: " << RootSlack << "\n";
- dbgs() << " NewRootDepth + NewRootLatency "
+ dbgs() << " NewRootDepth + NewRootLatency = "
<< NewRootDepth + NewRootLatency << "\n";
- dbgs() << " RootDepth + RootLatency + RootSlack "
+ dbgs() << " RootDepth + RootLatency + RootSlack = "
<< RootDepth + RootLatency + RootSlack << "\n";);
unsigned NewCycleCount = NewRootDepth + NewRootLatency;
OpenPOWER on IntegriCloud