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 ec95020fa0
commit 764112d144
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,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