diff options
| author | Camille Mougey <commial@gmail.com> | 2019-01-16 15:10:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-16 15:10:22 +0100 |
| commit | 28285a330da5fd586e31dceb152a35c6171698ba (patch) | |
| tree | b9f3649a1c0d0bacef142bfcf2b98310c89a5f70 /miasm2/arch/x86/sem.py | |
| parent | 026069748a814259018ddc660e0a3d43cc0d681c (diff) | |
| parent | e8a12bea1445afd764f4ef7075075a773fe84677 (diff) | |
| download | miasm-28285a330da5fd586e31dceb152a35c6171698ba.tar.gz miasm-28285a330da5fd586e31dceb152a35c6171698ba.zip | |
Merge pull request #942 from serpilliere/rename_idiv_sdiv
Rename idiv/imod into sdiv/smod
Diffstat (limited to 'miasm2/arch/x86/sem.py')
| -rw-r--r-- | miasm2/arch/x86/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index 244aff30..e01adcbc 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -1754,8 +1754,8 @@ def idiv(ir, instr, src1): else: raise ValueError('div arg not impl', src1) - c_d = m2_expr.ExprOp('idiv', src2, src1.signExtend(src2.size)) - c_r = m2_expr.ExprOp('imod', src2, src1.signExtend(src2.size)) + c_d = m2_expr.ExprOp('sdiv', src2, src1.signExtend(src2.size)) + c_r = m2_expr.ExprOp('smod', src2, src1.signExtend(src2.size)) # if 8 bit div, only ax is affected if size == 8: |