renamed all self-defined print functions

This commit is contained in:
Julian Hammer
2017-09-20 15:01:04 +02:00
parent 4c115c6725
commit f312e47a09
6 changed files with 15 additions and 36 deletions

View File

@@ -34,7 +34,7 @@ per_loop = '100'
# Start
operands = [x for x in [dst, op1, op2] if x is not None]
opListStr = ', '.join([x.print() for x in operands])
opListStr = ', '.join([str(x) for x in operands])
print('Create Testcase for {} {}'.format(mnemonic, opListStr ), end='')
tc = Testcase(mnemonic, operands, per_loop)
tc.write_testcase()