diff options
| author | serpilliere <devnull@localhost> | 2012-06-01 16:40:03 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-06-01 16:40:03 +0200 |
| commit | 2ec2401129c315c45ea8c22f46b29f1f9ea69547 (patch) | |
| tree | b781cda06cef2a9074ad1638163ff101f3cfbfd2 /miasm/arch/ia32_sem.py | |
| parent | a34a6e01e5ca1dafbdc539fcbf28d17df657ef77 (diff) | |
| download | focaccia-miasm-2ec2401129c315c45ea8c22f46b29f1f9ea69547.tar.gz focaccia-miasm-2ec2401129c315c45ea8c22f46b29f1f9ea69547.zip | |
expr: fix exprcompose bugs; ia32sem bug
Diffstat (limited to 'miasm/arch/ia32_sem.py')
| -rw-r--r-- | miasm/arch/ia32_sem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/arch/ia32_sem.py b/miasm/arch/ia32_sem.py index e28c1327..018d5636 100644 --- a/miasm/arch/ia32_sem.py +++ b/miasm/arch/ia32_sem.py @@ -1589,7 +1589,7 @@ def ficom(info, a): return e def fcomp(info, a): - e= fcom(a) + e= fcom(info, a) e+=float_pop() e += set_float_cs_eip(info) |