summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-10-09 00:15:46 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-10-09 00:15:46 +0000
commit701edc154637cb6231db0d2615677ce6f19c458f (patch)
treeafacf24b59b50e1f25c88121a3d7ccd7e64d6f83
parent59ebe44049076dcdc4f764ed12d7531f07fcacbf (diff)
downloadbcm5719-llvm-701edc154637cb6231db0d2615677ce6f19c458f.tar.gz
bcm5719-llvm-701edc154637cb6231db0d2615677ce6f19c458f.zip
Minor change.
llvm-svn: 116127
-rwxr-xr-xlldb/examples/python/disasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/disasm.py b/lldb/examples/python/disasm.py
index 3de3730c422..7264022879d 100755
--- a/lldb/examples/python/disasm.py
+++ b/lldb/examples/python/disasm.py
@@ -14,7 +14,7 @@ import sys
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
OpenPOWER on IntegriCloud