about summary refs log tree commit diff stats
path: root/miasm2/expression/expression_helper.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-06-24 15:00:33 +0200
committerserpilliere <devnull@localhost>2014-06-24 15:00:33 +0200
commit70e7237106321ddf6fb2db198cdf45d06b74581a (patch)
treeac4f26904f54e23820b35e7b1a1f975dcb879b2d /miasm2/expression/expression_helper.py
parentd5a38769bfbd94ed46bf654c4dac1733e088d5bf (diff)
downloadfocaccia-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.py2
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):