commit | e3c81e0fc26a1f69a5816f0067049c2ca39f1657 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Sat Oct 09 00:15:46 2010 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Sat Oct 09 00:15:46 2010 +0000 |
tree | 20154a6512f3a6bf96e6b5d902d329bcdad21c37 | |
parent | 54d099e6801ccb37f0079ef479f357669c9e6dd6 [diff] [blame] |
Minor change. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116127 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/python/disasm.py b/examples/python/disasm.py index 3de3730..7264022 100755 --- a/examples/python/disasm.py +++ b/examples/python/disasm.py
@@ -14,7 +14,7 @@ import time def disassemble_instructions (insts): - for i in range(0, insts.GetSize()): + for i in range(insts.GetSize()): print insts.GetInstructionAtIndex(i) # Initialize LLDB so we can use it