diff options
| -rw-r--r-- | miasm2/arch/mips32/sem.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miasm2/arch/mips32/sem.py b/miasm2/arch/mips32/sem.py index 10986a99..d96e6b2d 100644 --- a/miasm2/arch/mips32/sem.py +++ b/miasm2/arch/mips32/sem.py @@ -149,16 +149,16 @@ def sh(ir, instr, a, b): return None, e, [] def movn(ir, instr, a, b, c): - lbl_do = ExprId(ir.gen_label(), instr.mode) - lbl_skip = ExprId(ir.get_next_label(instr), instr.mode) + lbl_do = ExprId(ir.gen_label(), 32) + lbl_skip = ExprId(ir.get_next_label(instr), 32) e_do = [] e_do.append(ExprAff(a, b)) return ExprCond(c, lbl_do, lbl_skip), [], [irbloc(lbl_do.name, lbl_skip, [e_do])] def movz(ir, instr, a, b, c): - lbl_do = ExprId(ir.gen_label(), instr.mode) - lbl_skip = ExprId(ir.get_next_label(instr), instr.mode) + lbl_do = ExprId(ir.gen_label(), 32) + lbl_skip = ExprId(ir.get_next_label(instr), 32) e_do = [] e_do.append(ExprAff(a, b)) |