mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Fix uses of the C99 PRI format macros not to conflict with C++11 UDLs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152474 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -109,9 +109,9 @@ void DumpSymbol(const SymbolRef &Sym, const ObjectFile *obj, bool IsDynamic) {
|
||||
// format() can't handle StringRefs
|
||||
outs() << format(" %-32s", FullName.c_str())
|
||||
<< format(" %-4s", GetTypeStr(Type))
|
||||
<< format(" %16"PRIx64, Address)
|
||||
<< format(" %16"PRIx64, Size)
|
||||
<< format(" %16"PRIx64, FileOffset)
|
||||
<< format(" %16" PRIx64, Address)
|
||||
<< format(" %16" PRIx64, Size)
|
||||
<< format(" %16" PRIx64, FileOffset)
|
||||
<< " " << GetFlagStr(Flags)
|
||||
<< "\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user