diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-11-05 08:57:40 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-11-05 08:57:40 +0000 |
commit | f3da5290282d5a0b98378148e76d60a80944968e (patch) | |
tree | c5511f1d53d1ae1f12b207ae11ce8a54bb61d4e0 /llvm/lib/DebugInfo/DWARFDebugLine.cpp | |
parent | 611cb6445343a27f710100b1d2b11fd375d9e26f (diff) | |
download | bcm5719-llvm-f3da5290282d5a0b98378148e76d60a80944968e.tar.gz bcm5719-llvm-f3da5290282d5a0b98378148e76d60a80944968e.zip |
Add more PRI.64 macros for MSVC and use them throughout the codebase.
llvm-svn: 143799
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugLine.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARFDebugLine.cpp index fe1ef78b026..0248ad3fcbb 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLine.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLine.cpp @@ -68,7 +68,7 @@ void DWARFDebugLine::Row::reset(bool default_is_stmt) { } void DWARFDebugLine::Row::dump(raw_ostream &OS) const { - OS << format("0x%16.16llx %6u %6u", Address, Line, Column) + OS << format("0x%16.16" PRIx64 " %6u %6u", Address, Line, Column) << format(" %6u %3u ", File, Isa) << (IsStmt ? " is_stmt" : "") << (BasicBlock ? " basic_block" : "") |