diff options
author | David Green <david.green@arm.com> | 2024-12-16 08:48:57 +0000 |
---|---|---|
committer | David Green <david.green@arm.com> | 2024-12-16 08:48:57 +0000 |
commit | a35db2880a488b62a16f269972ad885fd58033f7 (patch) | |
tree | df8fe6804c79001b1bb8f2642df346d138afac45 /llvm/lib/CodeGen/MachineCombiner.cpp | |
parent | b4c1f0cc492f1597397dcf0b06b816fa0a2135f1 (diff) | |
download | llvm-a35db2880a488b62a16f269972ad885fd58033f7.zip llvm-a35db2880a488b62a16f269972ad885fd58033f7.tar.gz llvm-a35db2880a488b62a16f269972ad885fd58033f7.tar.bz2 |
[NFC] Remove some unnecessary semicolons
All inside LLVM_DEBUG, some of which have been cleaned up by adding block
scopes to allow them to format more nicely.
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() |