diff options
Diffstat (limited to 'llvm/lib/CodeGen/MachineCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineCombiner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineCombiner.cpp b/llvm/lib/CodeGen/MachineCombiner.cpp index 141cc1f..b8d5921 100644 --- a/llvm/lib/CodeGen/MachineCombiner.cpp +++ b/llvm/lib/CodeGen/MachineCombiner.cpp @@ -399,7 +399,7 @@ bool MachineCombiner::improvesCriticalPathLen( << RootSlack << " SlackIsAccurate=" << SlackIsAccurate << "\n\tNewRootDepth + NewRootLatency = " << NewCycleCount << "\n\tRootDepth + RootLatency + RootSlack = " - << OldCycleCount;); + << OldCycleCount); LLVM_DEBUG(NewCycleCount <= OldCycleCount ? dbgs() << "\n\t It IMPROVES PathLen because" : dbgs() << "\n\t It DOES NOT improve PathLen because"); @@ -452,7 +452,7 @@ bool MachineCombiner::preservesResourceLen( LLVM_DEBUG(dbgs() << "\t\tResource length before replacement: " << ResLenBeforeCombine - << " and after: " << ResLenAfterCombine << "\n";); + << " and after: " << ResLenAfterCombine << "\n"); LLVM_DEBUG( ResLenAfterCombine <= ResLenBeforeCombine + TII->getExtendResourceLenLimit() |