diff options
| -rw-r--r-- | miasm2/arch/x86/sem.py | 2 |
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 |