From bd1dfe0154b07b969d7d02661b9b562cfdb05047 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Fri, 29 Aug 2014 11:18:43 +0200 Subject: x86: fix float_list --- miasm2/arch/x86/sem.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index c78c9c36..61e2c7e0 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -56,14 +56,15 @@ OF(A-B) = ((A XOR D) AND (A XOR B)) < 0 float_list = [ - float_st0, - float_st1, - float_st2, - float_st3, - float_st4, - float_st5, - float_st6, - float_st7, + ExprId("ST", 64), + ExprId("ST(0)", 64), + ExprId("ST(1)", 64), + ExprId("ST(2)", 64), + ExprId("ST(3)", 64), + ExprId("ST(4)", 64), + ExprId("ST(5)", 64), + ExprId("ST(6)", 64), + ExprId("ST(7)", 64), ] -- cgit 1.4.1