diff options
| author | Ajax <commial@gmail.com> | 2015-11-12 11:22:51 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-11-12 11:22:51 +0100 |
| commit | bac61c9e4c6e1fbeca37488cf78b7c9555a9191d (patch) | |
| tree | 886ca75bc03debc0b7fad2f39ab7e7ccbd52d353 | |
| parent | b62587a2b5c1a24892ac825f3c0edbfb765a2572 (diff) | |
| download | miasm-bac61c9e4c6e1fbeca37488cf78b7c9555a9191d.tar.gz miasm-bac61c9e4c6e1fbeca37488cf78b7c9555a9191d.zip | |
x86/sem: fix typo (creds @serpilliere)
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/sem.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index 85723d97..cbf6e6e6 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -2030,9 +2030,7 @@ def fisttp(ir, instr, a): def fild(ir, instr, a): # XXXXX - src = m2_expr.ExprO - - p('int_%.2d_to_double' % a.size, a) + src = m2_expr.ExprOp('int_%.2d_to_double' % a.size, a) e = [] e += set_float_cs_eip(instr) e_fld, extra = fld(ir, instr, src) |