Skip to content

Commit 504c78e

Browse files
committed
clang-format
1 parent 8121b86 commit 504c78e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

bolt/lib/Passes/ProfileQualityStats.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -347,20 +347,20 @@ void printCFGFlowConservationStats(const BinaryContext &BC, raw_ostream &OS,
347347
}
348348
}
349349
double WeightedGap = WeightedGapSum;
350-
if (WeightSum > 0)
350+
if (WeightSum > 0)
351351
WeightedGap /= WeightSum;
352352
if (opts::Verbosity >= 2 && WorstGap >= 0.9) {
353353
OS << "Nontrivial CFG gap observed in function "
354-
<< Function->getPrintName() << "\n"
355-
<< "Weighted gap: " << formatv("{0:P}", WeightedGap) << "\n";
354+
<< Function->getPrintName() << "\n"
355+
<< "Weighted gap: " << formatv("{0:P}", WeightedGap) << "\n";
356356
if (BBWorstGap)
357357
OS << "Worst gap: " << formatv("{0:P}", WorstGap)
358-
<< " at BB with input offset: 0x"
359-
<< Twine::utohexstr(BBWorstGap->getInputOffset()) << "\n";
358+
<< " at BB with input offset: 0x"
359+
<< Twine::utohexstr(BBWorstGap->getInputOffset()) << "\n";
360360
if (BBWorstGapAbs)
361361
OS << "Worst gap (absolute value): " << WorstGapAbs << " at BB with "
362-
<< "input offset 0x"
363-
<< Twine::utohexstr(BBWorstGapAbs->getInputOffset()) << "\n";
362+
<< "input offset 0x"
363+
<< Twine::utohexstr(BBWorstGapAbs->getInputOffset()) << "\n";
364364
if (opts::Verbosity >= 3)
365365
Function->dump();
366366
}

0 commit comments

Comments
 (0)