diff options
author | Davide Italiano <davide@freebsd.org> | 2015-04-21 16:06:17 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2015-04-21 16:06:17 +0000 |
commit | 327fda84d9f9f6b274eace15a72c78d8a310f53b (patch) | |
tree | df468ec8f1558cddc167d1653cbc527cdff13b4d | |
parent | ab9d97c89a1e272ca2ff35c05f979027ad452fd3 (diff) | |
download | bcm5719-llvm-327fda84d9f9f6b274eace15a72c78d8a310f53b.tar.gz bcm5719-llvm-327fda84d9f9f6b274eace15a72c78d8a310f53b.zip |
Placate clang. lldb can build on FreeBSD with -Werror again.
llvm-svn: 235387
-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 545476c7168..7340442e1b9 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp @@ -465,7 +465,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.16lx - 0x%16.16lx)\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd()); } } } |