Skip to content

Commit 7280ff3

Browse files
committed
Format
1 parent 1b86857 commit 7280ff3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/tools/llvm-readobj/ELFDumper.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5502,15 +5502,15 @@ template <class ELFT> void GNUELFDumper<ELFT>::printCallGraphInfo() {
55025502
OS << "\nFunction Type ID:: 0x" << format("%lx", CGInfo.FunctionTypeId);
55035503
OS << "\nIndirect 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 << "\nDirect 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";

0 commit comments

Comments
 (0)