[Lldb-commits] [lldb] r350177 - [DWARFUnit] Remove commented out code. NFCI.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 31 10:45:30 PST 2018


Author: davide
Date: Mon Dec 31 10:45:30 2018
New Revision: 350177

URL: http://llvm.org/viewvc/llvm-project?rev=350177&view=rev
Log:
[DWARFUnit] Remove commented out code. NFCI.

Modified:
    lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp

Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp?rev=350177&r1=350176&r2=350177&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp Mon Dec 31 10:45:30 2018
@@ -191,13 +191,6 @@ void DWARFUnit::ExtractDIEsRWLocked() {
                                                       IsDWARF64());
   while (offset < next_cu_offset &&
          die.FastExtract(data, this, fixed_form_sizes, &offset)) {
-    //        if (log)
-    //            log->Printf("0x%8.8x: %*.*s%s%s",
-    //                        die.GetOffset(),
-    //                        depth * 2, depth * 2, "",
-    //                        DW_TAG_value_to_name (die.Tag()),
-    //                        die.HasChildren() ? " *" : "");
-
     const bool null_die = die.IsNULL();
     if (depth == 0) {
       assert(m_die_array.empty() && "Compile unit DIE already added");




More information about the lldb-commits mailing list