[Lldb-commits] [lldb] r244759 - Remove printf most likely left from some debugging section
Tamas Berghammer via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 12 08:55:04 PDT 2015
Author: tberghammer
Date: Wed Aug 12 10:55:04 2015
New Revision: 244759
URL: http://llvm.org/viewvc/llvm-project?rev=244759&view=rev
Log:
Remove printf most likely left from some debugging section
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp?rev=244759&r1=244758&r2=244759&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp Wed Aug 12 10:55:04 2015
@@ -467,7 +467,6 @@ DWARFCompileUnit::BuildAddressRangeTable
{
const LineTable::FileAddressRanges::Entry &range = file_ranges.GetEntryRef(idx);
debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
- printf ("0x%8.8x: [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ")\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
}
}
}
More information about the lldb-commits
mailing list