From 02cdb1dd5a0144bc169571aff657ee90e9f39fa7 Mon Sep 17 00:00:00 2001 From: Jan Laukemann Date: Fri, 22 Sep 2017 14:17:21 +0200 Subject: [PATCH] updated print to str function --- get_instr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_instr.py b/get_instr.py index ac86492..c181f25 100755 --- a/get_instr.py +++ b/get_instr.py @@ -145,7 +145,7 @@ def check_instr(instr): #Only create benchmark if no label (LBL) is part of the operands do_bench = True for par in opList: - if(par.print() == 'LBL' or par.print() == ''): + if(str(par) == 'LBL' or str(par) == ''): do_bench = False if(do_bench): #Create testcase with reversed param list, due to the fact its intel syntax!