about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--miasm2/arch/x86/sem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py
index 232b758f..22e8c276 100644
--- a/miasm2/arch/x86/sem.py
+++ b/miasm2/arch/x86/sem.py
@@ -2884,7 +2884,7 @@ def xorps(ir, instr, a, b):
     e = []
     if isinstance(b, ExprMem):
         b = ExprMem(b.arg, a.size)
-    e.append(ExprAff(a, ExprOp('xorps', a, b)))
+    e.append(ExprAff(a, ExprOp('^', a, b)))
     return e, []
 
 ### MMX/SSE/AVX operations