[Symbolication] Remove some dead code. Nothing exciting.

llvm-svn: 367262
This commit is contained in:
Davide Italiano 2019-07-29 21:25:51 +00:00
parent f80c72be20
commit 9a5fbc8163
1 changed files with 0 additions and 2 deletions

View File

@ -418,7 +418,6 @@ class Image:
if self.locate_module_and_debug_symbols(): if self.locate_module_and_debug_symbols():
resolved_path = self.get_resolved_path() resolved_path = self.get_resolved_path()
path_spec = lldb.SBFileSpec(resolved_path) path_spec = lldb.SBFileSpec(resolved_path)
#result.PutCString ('plist[%s] = %s' % (uuid, self.plist))
error = lldb.SBError() error = lldb.SBError()
target = lldb.debugger.CreateTarget( target = lldb.debugger.CreateTarget(
resolved_path, self.arch, None, False, error) resolved_path, self.arch, None, False, error)
@ -574,7 +573,6 @@ def disassemble_instructions(
mnemonic = inst.GetMnemonic(target) mnemonic = inst.GetMnemonic(target)
operands = inst.GetOperands(target) operands = inst.GetOperands(target)
comment = inst.GetComment(target) comment = inst.GetComment(target)
#data = inst.GetData (target)
lines.append("%#16.16x: %8s %s" % (inst_pc, mnemonic, operands)) lines.append("%#16.16x: %8s %s" % (inst_pc, mnemonic, operands))
if comment: if comment:
line_len = len(lines[-1]) line_len = len(lines[-1])