diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-11-05 16:01:13 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-11-05 16:01:13 +0000 |
commit | 79730ad07d6bdc2bcae5694aad884090c4f2b9cf (patch) | |
tree | 44139098e29bf90365d9af456c97604026597170 /llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp | |
parent | cda5732e52b4d9971e4c1525a8062080817f44da (diff) | |
download | bcm5719-llvm-79730ad07d6bdc2bcae5694aad884090c4f2b9cf.tar.gz bcm5719-llvm-79730ad07d6bdc2bcae5694aad884090c4f2b9cf.zip |
Audited all the format strings in libDebugInfo and fixed those that didn't match the types.
llvm-svn: 143814
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp b/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp index a11ae3f2908..6e6c37e3094 100644 --- a/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp @@ -83,7 +83,7 @@ void DWARFDebugAbbrev::dump(raw_ostream &OS) const { DWARFAbbreviationDeclarationCollMapConstIter pos; for (pos = AbbrevCollMap.begin(); pos != AbbrevCollMap.end(); ++pos) { - OS << format("Abbrev table for offset: 0x%8.8x\n", pos->first); + OS << format("Abbrev table for offset: 0x%8.8" PRIx64 "\n", pos->first); pos->second.dump(OS); } } |