aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-10-15 16:33:17 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-10-15 16:33:17 +0000
commit3f6d14e8715c99d5fb391c534ed5b8a369914457 (patch)
treec284ee25bc05bdcac79b5537e29f73b38a8eca2e /examples
parent314a145be16f1061ad9a2c8432f14ea6c1629513 (diff)
downloadlldb-3f6d14e8715c99d5fb391c534ed5b8a369914457.tar.gz
There's no need to explicitly call lldb.SBDebugger.Initialize() now. It is done
when importing the lldb module. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116585 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/python/disasm.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/python/disasm.py b/examples/python/disasm.py
index 726402287..5d2087485 100755
--- a/examples/python/disasm.py
+++ b/examples/python/disasm.py
@@ -17,9 +17,6 @@ def disassemble_instructions (insts):
for i in range(insts.GetSize()):
print insts.GetInstructionAtIndex(i)
-# Initialize LLDB so we can use it
-lldb.SBDebugger.Initialize()
-
# Create a new debugger instance
debugger = lldb.SBDebugger.Create()