File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5502,15 +5502,15 @@ template <class ELFT> void GNUELFDumper<ELFT>::printCallGraphInfo() {
55025502 OS << " \n Function Type ID:: 0x" << format (" %lx" , CGInfo.FunctionTypeId );
55035503 OS << " \n Indirect callee count:: " << CGInfo.IndirectCallsites .size ();
55045504 if (CGInfo.IndirectCallsites .size () > 0 ) {
5505- OS << " \n {" ;
5505+ OS << " \n {" ;
55065506 for (auto &[IndirCallSitePc, TypeId] : CGInfo.IndirectCallsites ) {
55075507 OS << " \n " ;
55085508 OS.PadToColumn (2 );
55095509 OS << " callsite: 0x" << format (" %lx" , IndirCallSitePc);
55105510 OS << " \n " ;
55115511 OS.PadToColumn (2 );
55125512 OS << " calleeTypeId: 0x" << format (" %lx" , TypeId);
5513- }
5513+ }
55145514 OS << " \n }" ;
55155515 }
55165516 OS << " \n Direct callee count:: " << CGInfo.DirectCallees .size ();
@@ -5520,7 +5520,7 @@ template <class ELFT> void GNUELFDumper<ELFT>::printCallGraphInfo() {
55205520 OS << " \n " ;
55215521 OS.PadToColumn (2 );
55225522 OS << " 0x" << format (" %lx" , CalleePC);
5523- }
5523+ }
55245524 OS << " \n }" ;
55255525 }
55265526 OS << " \n " ;
You can’t perform that action at this time.
0 commit comments