Skip to content

Commit fae410b

Browse files
committed
clang-format
1 parent ae84c47 commit fae410b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bolt/lib/Passes/ProfileQualityStats.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ void printCallGraphFlowConservationStats(
202202
TotalFlowMap.CallGraphIncomingFlows;
203203

204204
// Only consider functions that are not a program entry.
205-
if (CallGraphIncomingFlows.find(FunctionNum) == CallGraphIncomingFlows.end()) {
205+
if (CallGraphIncomingFlows.find(FunctionNum) ==
206+
CallGraphIncomingFlows.end()) {
206207
CallGraphGaps.push_back(0.0);
207208
continue;
208209
}
@@ -212,8 +213,7 @@ void printCallGraphFlowConservationStats(
212213
uint32_t NumConsideredEntryBlocks = 0;
213214

214215
Function->forEachEntryPoint([&](uint64_t Offset, const MCSymbol *Label) {
215-
const BinaryBasicBlock *EntryBB =
216-
Function->getBasicBlockAtOffset(Offset);
216+
const BinaryBasicBlock *EntryBB = Function->getBasicBlockAtOffset(Offset);
217217
if (!EntryBB || EntryBB->succ_size() == 0)
218218
return true;
219219
NumConsideredEntryBlocks++;
@@ -230,7 +230,7 @@ void printCallGraphFlowConservationStats(
230230
// warning if requested.
231231
OS << "BOLT WARNING: unexpected entry block CFG outflow < inflow "
232232
"in function "
233-
<< Function->getPrintName() << "\n";
233+
<< Function->getPrintName() << "\n";
234234
if (opts::Verbosity >= 3)
235235
Function->dump();
236236
}
@@ -246,8 +246,8 @@ void printCallGraphFlowConservationStats(
246246

247247
if (opts::Verbosity >= 2 && CallGraphGap >= 0.5) {
248248
OS << "Nontrivial call graph gap of size "
249-
<< formatv("{0:P}", CallGraphGap) << " observed in function "
250-
<< Function->getPrintName() << "\n";
249+
<< formatv("{0:P}", CallGraphGap) << " observed in function "
250+
<< Function->getPrintName() << "\n";
251251
if (opts::Verbosity >= 3)
252252
Function->dump();
253253
}

0 commit comments

Comments
 (0)