From f52321c911b7fee47880c9a12d80be6d1f2ff2b7 Mon Sep 17 00:00:00 2001 From: Niko Schmidt Date: Wed, 27 Apr 2016 21:09:03 +0200 Subject: Update sem.py Fixed missing arch (64) on line 1451 --- miasm2/arch/x86/sem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miasm2/arch/x86/sem.py') diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index e843cd2b..eb067c55 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -1448,7 +1448,7 @@ def idiv(ir, instr, a): if size == 8: b = mRAX[instr.mode][:16] - elif size in [16, 32]: + elif size in [16, 32, 64]: s1, s2 = mRDX[size], mRAX[size] b = m2_expr.ExprCompose([(s2, 0, size), (s1, size, size * 2)]) -- cgit 1.4.1