[llvm] r249248 - include equal sign in debug equations; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 3 13:45:01 PDT 2015
Author: spatel
Date: Sat Oct 3 15:45:01 2015
New Revision: 249248
URL: http://llvm.org/viewvc/llvm-project?rev=249248&view=rev
Log:
include equal sign in debug equations; NFC
Modified:
llvm/trunk/lib/CodeGen/MachineCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/MachineCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineCombiner.cpp?rev=249248&r1=249247&r2=249248&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineCombiner.cpp Sat Oct 3 15:45:01 2015
@@ -249,9 +249,9 @@ bool MachineCombiner::improvesCriticalPa
<< " 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;
More information about the llvm-commits
mailing list