diff options
author | Wolfgang Pieb <Wolfgang.Pieb@sony.com> | 2017-12-22 01:12:24 +0000 |
---|---|---|
committer | Wolfgang Pieb <Wolfgang.Pieb@sony.com> | 2017-12-22 01:12:24 +0000 |
commit | b8ee2dfc59a9857bb18015ffe830a958bfaa4998 (patch) | |
tree | 1d416bbfc86f095d8727ecf03dcc071c0c78805d /lib/DebugInfo | |
parent | 4c4436477d28621a0a3e4ddefe36b0bc95c36545 (diff) |
[DWARF] Fix formatting bug with r321295. This fixes a MIPS buildbot failure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r-- | lib/DebugInfo/DWARF/DWARFContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/DWARF/DWARFContext.cpp b/lib/DebugInfo/DWARF/DWARFContext.cpp index 5397994effc..eb23ca8229a 100644 --- a/lib/DebugInfo/DWARF/DWARFContext.cpp +++ b/lib/DebugInfo/DWARF/DWARFContext.cpp @@ -168,7 +168,7 @@ static void dumpDWARFv5StringOffsetsSection( OS << format("0x%8.8x: Gap, length = ", Offset); OS << (ContributionHeader - Offset) << "\n"; } - OS << format("0x%8.8x: ", ContributionHeader); + OS << format("0x%8.8x: ", (uint32_t)ContributionHeader); OS << "Contribution size = " << Contribution->Size << ", Format = " << (Format == DWARF32 ? "DWARF32" : "DWARF64") << ", Version = " << Version << "\n"; |