diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-02-21 23:55:31 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-02-21 23:55:31 +0000 |
commit | 676a48751d9acc6370ea30ae87062c3c4bd5e347 (patch) | |
tree | 81d41c5121c9e843be6c2cbd0e9bfb5583048f08 /lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp | |
parent | cd5c7247ab895dfe4197e08736d025e807ce9bca (diff) | |
download | bcm5719-llvm-676a48751d9acc6370ea30ae87062c3c4bd5e347.tar.gz bcm5719-llvm-676a48751d9acc6370ea30ae87062c3c4bd5e347.zip |
Fix clang warnings related to python macro redefinition and printf format specifiers.
llvm-svn: 175829
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp index c4f87d98e74..40d5bd269d3 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp @@ -414,7 +414,7 @@ DWARFCompileUnit::BuildAddressRangeTable (SymbolFileDWARF* dwarf2Data, { const LineTable::FileAddressRanges::Entry &range = file_ranges.GetEntryRef(idx); debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), range.GetRangeEnd()); - printf ("0x%8.8x: [0x%16.16llx - 0x%16.16llx)\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd()); + printf ("0x%8.8x: [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ")\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd()); } } } |