From def39b8ef0643c32b23cb41bb321ecc23435afd0 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Wed, 18 Jul 2018 18:45:11 +0200 Subject: PPC: fix tipo --- miasm2/arch/ppc/sem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miasm2') diff --git a/miasm2/arch/ppc/sem.py b/miasm2/arch/ppc/sem.py index 678ab041..7f165e96 100644 --- a/miasm2/arch/ppc/sem.py +++ b/miasm2/arch/ppc/sem.py @@ -98,7 +98,7 @@ def mn_do_and(ir, instr, ra, rs, arg2): return ret, [] def mn_do_cntlzw(ir, instr, ra, rs): - ret = [ ExprAff(ra, ExprOp('cntleadzeros'), rs) ] + ret = [ ExprAff(ra, ExprOp('cntleadzeros', rs)) ] if instr.name[-1] == '.': ret += mn_compute_flags(rvalue) -- cgit 1.4.1