mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-28 21:38:44 +00:00
llvm-objdump: add missing % in format specifier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5ccbb28fc9
commit
b56b256896
@ -629,8 +629,8 @@ printMachOCompactUnwindSection(const MachOObjectFile *Obj,
|
||||
// Finally, we're ready to print the data we've gathered.
|
||||
outs() << "Contents of __compact_unwind section:\n";
|
||||
for (auto &Entry : CompactUnwinds) {
|
||||
outs() << " Entry at offset " << format("0x" PRIx32, Entry.OffsetInSection)
|
||||
<< ":\n";
|
||||
outs() << " Entry at offset "
|
||||
<< format("0x%" PRIx32, Entry.OffsetInSection) << ":\n";
|
||||
|
||||
// 1. Start of the region this entry applies to.
|
||||
outs() << " start: "
|
||||
|
Loading…
x
Reference in New Issue
Block a user