python: fix a bug in test_arm.py

This commit is contained in:
Nguyen Anh Quynh 2015-02-15 09:51:29 +08:00
parent f16fcbdbc8
commit 540185d186
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def print_insn_detail(insn):
if i.vector_index != -1:
print("\t\t\toperands[%u].vector_index = %u" %(c, i.vector_index))
if i.subtracted:
print("\t\t\toperands[%u].subtracted = True")
print("\t\t\toperands[%u].subtracted = True" %c)
c += 1