From 61134d719a59d8d9024d0b066815cd3413adc4b1 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sat, 3 Oct 2015 20:45:01 +0000 Subject: [PATCH] include equal sign in debug equations; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249248 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineCombiner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.34.1