@@ -834,14 +834,12 @@ void ProfiledBinary::populateSymbolsFromBinary(const ObjectFile *Obj) {
834834 // Load binary functions from symbol table when Debug info is incomplete.
835835 // Strip the internal suffixes which are not reflected in the DWARF info.
836836 const SmallVector<StringRef, 6 > Suffixes (
837- {
838- // Internal suffixes from CoroSplit pass
839- " .cleanup" , " .destroy" , " .resume" ,
840- // Internal suffixes from Bolt
841- " .cold" , " .warm" ,
842- // Compiler internal
843- " .llvm."
844- });
837+ {// Internal suffixes from CoroSplit pass
838+ " .cleanup" , " .destroy" , " .resume" ,
839+ // Internal suffixes from Bolt
840+ " .cold" , " .warm" ,
841+ // Compiler internal
842+ " .llvm." });
845843 StringRef FileName = Obj->getFileName ();
846844 for (const SymbolRef &Symbol : Obj->symbols ()) {
847845 const SymbolRef::Type Type = unwrapOrError (Symbol.getType (), FileName);
@@ -871,8 +869,10 @@ void ProfiledBinary::populateSymbolsFromBinary(const ObjectFile *Obj) {
871869 if (Ret.second && Range->getFuncName () != SymName && ShowDetailedWarning)
872870 WithColor::warning ()
873871 << " Conflicting symbol " << Name << " already exists in DWARF as "
874- << Range->getFuncName () << " at address " << format (" %8" PRIx64, StartAddr)
875- << " . The DWARF indicates a range from " << format (" %8" PRIx64, Range->StartAddress ) << " to "
872+ << Range->getFuncName () << " at address "
873+ << format (" %8" PRIx64, StartAddr)
874+ << " . The DWARF indicates a range from "
875+ << format (" %8" PRIx64, Range->StartAddress ) << " to "
876876 << format (" %8" PRIx64, Range->EndAddress ) << " \n " ;
877877 } else {
878878 // Store/Update Function Range from SymTab
0 commit comments