From: Sanjay Patel Date: Sat, 3 Oct 2015 20:45:01 +0000 (+0000) Subject: include equal sign in debug equations; NFC X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=61134d719a59d8d9024d0b066815cd3413adc4b1;p=oota-llvm.git include equal sign in debug equations; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249248 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineCombiner.cpp b/lib/CodeGen/MachineCombiner.cpp index 3a20d15880f..89e0c7b8deb 100644 --- a/lib/CodeGen/MachineCombiner.cpp +++ b/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;