diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-03-30 16:50:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-30 16:50:42 +0200 |
| commit | 0457001e8ffad3896997e3dc237ff3a557beb784 (patch) | |
| tree | 3fca770e9ba8bd395a4f675dabd785d0ee0c3543 /miasm2/analysis/expression_range.py | |
| parent | 7947f33a61118c35a6b24aaac29337e2739216b4 (diff) | |
| parent | 8c211caed99021a3654c14db4cdc5c6ff0b612ee (diff) | |
| download | miasm-0457001e8ffad3896997e3dc237ff3a557beb784.tar.gz miasm-0457001e8ffad3896997e3dc237ff3a557beb784.zip | |
Merge pull request #510 from commial/feature/modinterval-mul
Feature/modinterval mul
Diffstat (limited to 'miasm2/analysis/expression_range.py')
| -rw-r--r-- | miasm2/analysis/expression_range.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/analysis/expression_range.py b/miasm2/analysis/expression_range.py index ca63588c..a2c4a8df 100644 --- a/miasm2/analysis/expression_range.py +++ b/miasm2/analysis/expression_range.py @@ -7,6 +7,7 @@ _op_range_handler = { "&": lambda x, y: x & y, "|": lambda x, y: x | y, "^": lambda x, y: x ^ y, + "*": lambda x, y: x * y, ">>": lambda x, y: x >> y, "a>>": lambda x, y: x.arithmetic_shift_right(y), "<<": lambda x, y: x << y, |