@@ -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
5859llvm::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