[Lldb-commits] [lldb] r116127 - /lldb/trunk/examples/python/disasm.py

Johnny Chen johnny.chen at apple.com
Fri Oct 8 17:15:46 PDT 2010


Author: johnny
Date: Fri Oct  8 19:15:46 2010
New Revision: 116127

URL: http://llvm.org/viewvc/llvm-project?rev=116127&view=rev
Log:
Minor change.

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=116127&r1=116126&r2=116127&view=diff
==============================================================================
--- lldb/trunk/examples/python/disasm.py (original)
+++ lldb/trunk/examples/python/disasm.py Fri Oct  8 19:15:46 2010
@@ -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





More information about the lldb-commits mailing list