Skip to content

Commit 15643b7

Browse files
shawbyoungaaupov
authored andcommitted
clang-format
Created using spr 1.3.4
1 parent 3bd1ec2 commit 15643b7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

bolt/lib/Profile/YAMLProfileReader.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ llvm::cl::opt<bool>
5151
cl::desc("Match functions with call graph"), cl::Hidden,
5252
cl::cat(BoltOptCategory));
5353

54-
llvm::cl::opt<bool> MatchWithPseudoProbes(
55-
"match-with-pseudo-probes", cl::desc("Match functions with pseudo probes"),
56-
cl::Hidden, cl::cat(BoltOptCategory));
54+
llvm::cl::opt<bool>
55+
MatchWithPseudoProbes("match-with-pseudo-probes",
56+
cl::desc("Match functions with pseudo probes"),
57+
cl::Hidden, cl::cat(BoltOptCategory));
5758

5859
llvm::cl::opt<bool> ProfileUseDFS("profile-use-dfs",
5960
cl::desc("use DFS order for YAML profile"),
@@ -809,12 +810,11 @@ size_t YAMLProfileReader::matchWithPseudoProbes(BinaryContext &BC) {
809810
const auto ProbeIt = Node->getProbes().begin();
810811
const auto *Probe =
811812
(ProbeIt != Node->getProbes().end()) ? &*ProbeIt : nullptr;
812-
LLVM_DEBUG(dbgs()
813-
<< MatchedNodes << "/" << YamlBF.InlineTree.size()
814-
<< " match with " << *BF << " at "
815-
<< (Probe ? Probe->getInlineContextStr(GUID2FuncDescMap)
816-
: "(none)")
817-
<< '\n');
813+
LLVM_DEBUG(dbgs() << MatchedNodes << "/" << YamlBF.InlineTree.size()
814+
<< " match with " << *BF << " at "
815+
<< (Probe ? Probe->getInlineContextStr(GUID2FuncDescMap)
816+
: "(none)")
817+
<< '\n');
818818
}
819819
MatchedWithPseudoProbes += !!Matched;
820820
YamlBF.Used |= !!Matched;

0 commit comments

Comments
 (0)