diff options
| -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 69e315d4..4923e3a8 100644 --- a/miasm2/arch/ppc/sem.py +++ b/miasm2/arch/ppc/sem.py @@ -428,7 +428,7 @@ def mn_do_nand(ir, instr, ra, rs, rb): def mn_do_neg(ir, instr, rd, ra): rvalue = -ra - ret = [ ExprAff(ra, rvalue) ] + ret = [ ExprAff(rd, rvalue) ] has_o = False over_expr = None |