Skip to content
Snippets Groups Projects
Commit 8f6fca7f authored by Johnny Chen's avatar Johnny Chen
Browse files

There's no need to explicitly call lldb.SBDebugger.Initialize() now. It is done

when importing the lldb module.

llvm-svn: 116585
parent fd64df4f
No related branches found
No related tags found
No related merge requests found
...@@ -17,9 +17,6 @@ def disassemble_instructions (insts): ...@@ -17,9 +17,6 @@ def disassemble_instructions (insts):
for i in range(insts.GetSize()): for i in range(insts.GetSize()):
print insts.GetInstructionAtIndex(i) print insts.GetInstructionAtIndex(i)
# Initialize LLDB so we can use it
lldb.SBDebugger.Initialize()
# Create a new debugger instance # Create a new debugger instance
debugger = lldb.SBDebugger.Create() debugger = lldb.SBDebugger.Create()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment