diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-10-15 16:33:17 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-15 16:33:17 +0000 |
| commit | 8f6fca7f304bc97b0de806349bc9bd6222704070 (patch) | |
| tree | c1d3667a60d3329bd883b5df36361ee8b21d6601 | |
| parent | fd64df4f9280e43195ad772e607fa6c6a205b728 (diff) | |
| download | bcm5719-llvm-8f6fca7f304bc97b0de806349bc9bd6222704070.tar.gz bcm5719-llvm-8f6fca7f304bc97b0de806349bc9bd6222704070.zip | |
There's no need to explicitly call lldb.SBDebugger.Initialize() now. It is done
when importing the lldb module.
llvm-svn: 116585
| -rwxr-xr-x | lldb/examples/python/disasm.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/examples/python/disasm.py b/lldb/examples/python/disasm.py index 7264022879d..5d20874855a 100755 --- a/lldb/examples/python/disasm.py +++ b/lldb/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() |

