diff options
| author | serpilliere <devnull@localhost> | 2014-06-24 15:00:33 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-06-24 15:00:33 +0200 |
| commit | 70e7237106321ddf6fb2db198cdf45d06b74581a (patch) | |
| tree | ac4f26904f54e23820b35e7b1a1f975dcb879b2d /miasm2/expression/expression_helper.py | |
| parent | d5a38769bfbd94ed46bf654c4dac1733e088d5bf (diff) | |
| download | focaccia-miasm-70e7237106321ddf6fb2db198cdf45d06b74581a.tar.gz focaccia-miasm-70e7237106321ddf6fb2db198cdf45d06b74581a.zip | |
Fix operand unify irem/imod
Diffstat (limited to 'miasm2/expression/expression_helper.py')
| -rw-r--r-- | miasm2/expression/expression_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/expression/expression_helper.py b/miasm2/expression/expression_helper.py index 0a4dd3ca..92f46324 100644 --- a/miasm2/expression/expression_helper.py +++ b/miasm2/expression/expression_helper.py @@ -128,7 +128,7 @@ def merge_sliceto_slice(args): op_propag_cst = ['+', '*', '^', '&', '|', '>>', - '<<', "a>>", ">>>", "<<<", "/", "%", 'idiv', 'irem'] + '<<', "a>>", ">>>", "<<<", "/", "%", 'idiv', 'imod'] def is_pure_int(e): |