[Lldb-commits] [lldb] r116585 - /lldb/trunk/examples/python/disasm.py
Johnny Chen
johnny.chen at apple.com
Fri Oct 15 09:33:17 PDT 2010
Author: johnny
Date: Fri Oct 15 11:33:17 2010
New Revision: 116585
URL: http://llvm.org/viewvc/llvm-project?rev=116585&view=rev
Log:
There's no need to explicitly call lldb.SBDebugger.Initialize() now. It is done
when importing the lldb module.
Modified:
lldb/trunk/examples/python/disasm.py
Modified: lldb/trunk/examples/python/disasm.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/disasm.py?rev=116585&r1=116584&r2=116585&view=diff
==============================================================================
--- lldb/trunk/examples/python/disasm.py (original)
+++ lldb/trunk/examples/python/disasm.py Fri Oct 15 11:33:17 2010
@@ -17,9 +17,6 @@
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()
More information about the lldb-commits
mailing list