about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/sem.py
diff options
context:
space:
mode:
authorTim Blazytko <tim.blazytko@rub.de>2015-03-24 16:49:56 +0100
committerTim Blazytko <tim.blazytko@rub.de>2015-03-24 16:49:56 +0100
commit077698af51175bae73e5faf9d79b91d1cc12f92b (patch)
treeb002745a40a5e04c1c4a208d113426c17fcc58d2 /miasm2/arch/x86/sem.py
parent0042a08d20659ef5b23f1ae2b034f502a2f4d4af (diff)
downloadmiasm-077698af51175bae73e5faf9d79b91d1cc12f92b.tar.gz
miasm-077698af51175bae73e5faf9d79b91d1cc12f92b.zip
fixed pxor semantics
Diffstat (limited to '')
-rw-r--r--miasm2/arch/x86/sem.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py
index f09e5057..8c3a351d 100644
--- a/miasm2/arch/x86/sem.py
+++ b/miasm2/arch/x86/sem.py
@@ -304,8 +304,11 @@ def xor(ir, instr, a, b):
 
 def pxor(ir, instr, a, b):
     e = []
+    if isinstance(a, m2_expr.ExprMem):
+        a = m2_expr.ExprMem(a.arg, b.size)
+    if isinstance(b, m2_expr.ExprMem):
+        b = m2_expr.ExprMem(b.arg, a.size)
     c = a ^ b
-    # e += update_flag_logic(c)
     e.append(m2_expr.ExprAff(a, c))
     return e, []