mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Fix compile error when building with C++11 - clang thinks that PRIx64 is a user-defined suffix or something
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162704 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
47aa9a2bb5
commit
e1630e01de
@ -50,8 +50,8 @@ bool DWARFDebugRangeList::extract(DataExtractor data, uint32_t *offset_ptr) {
|
||||
void DWARFDebugRangeList::dump(raw_ostream &OS) const {
|
||||
for (int i = 0, n = Entries.size(); i != n; ++i) {
|
||||
const char *format_str = (AddressSize == 4
|
||||
? "%08x %08"PRIx64" %08"PRIx64"\n"
|
||||
: "%08x %016"PRIx64" %016"PRIx64"\n");
|
||||
? "%08x %08" PRIx64 " %08" PRIx64 "\n"
|
||||
: "%08x %016" PRIx64 " %016" PRIx64 "\n");
|
||||
OS << format(format_str, Offset, Entries[i].StartAddress,
|
||||
Entries[i].EndAddress);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user