[Lldb-commits] [lldb] r367262 - [Symbolication] Remove some dead code. Nothing exciting.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 29 14:25:52 PDT 2019


Author: davide
Date: Mon Jul 29 14:25:51 2019
New Revision: 367262

URL: http://llvm.org/viewvc/llvm-project?rev=367262&view=rev
Log:
[Symbolication] Remove some dead code. Nothing exciting.

Modified:
    lldb/trunk/examples/python/symbolication.py

Modified: lldb/trunk/examples/python/symbolication.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/symbolication.py?rev=367262&r1=367261&r2=367262&view=diff
==============================================================================
--- lldb/trunk/examples/python/symbolication.py (original)
+++ lldb/trunk/examples/python/symbolication.py Mon Jul 29 14:25:51 2019
@@ -418,7 +418,6 @@ class Image:
         if self.locate_module_and_debug_symbols():
             resolved_path = self.get_resolved_path()
             path_spec = lldb.SBFileSpec(resolved_path)
-            #result.PutCString ('plist[%s] = %s' % (uuid, self.plist))
             error = lldb.SBError()
             target = lldb.debugger.CreateTarget(
                 resolved_path, self.arch, None, False, error)
@@ -574,7 +573,6 @@ def disassemble_instructions(
         mnemonic = inst.GetMnemonic(target)
         operands = inst.GetOperands(target)
         comment = inst.GetComment(target)
-        #data = inst.GetData (target)
         lines.append("%#16.16x: %8s %s" % (inst_pc, mnemonic, operands))
         if comment:
             line_len = len(lines[-1])




More information about the lldb-commits mailing list