diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-18 18:45:11 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-18 18:45:11 +0200 |
| commit | def39b8ef0643c32b23cb41bb321ecc23435afd0 (patch) | |
| tree | 12c5ee42c0e8e120b44c60df33f03e4a0562cef7 | |
| parent | e789c705c064d8c1526fa76d85f174003dfaa9ab (diff) | |
| download | miasm-def39b8ef0643c32b23cb41bb321ecc23435afd0.tar.gz miasm-def39b8ef0643c32b23cb41bb321ecc23435afd0.zip | |
PPC: fix tipo
| -rw-r--r-- | miasm2/arch/ppc/sem.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |