diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-08-21 08:27:40 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-08-23 09:35:27 +0200 |
| commit | 253547e35343aed844e7bcb033c610409fcbd21e (patch) | |
| tree | f57b90520b3c06edc8483979795d3de2e9a54d26 /miasm2/expression/expression_helper.py | |
| parent | 46bb6b39453ea8b5abb04dfd62492e429376a8ea (diff) | |
| download | miasm-253547e35343aed844e7bcb033c610409fcbd21e.tar.gz miasm-253547e35343aed844e7bcb033c610409fcbd21e.zip | |
Code cleaning: lgtm.com
Diffstat (limited to 'miasm2/expression/expression_helper.py')
| -rw-r--r-- | miasm2/expression/expression_helper.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/miasm2/expression/expression_helper.py b/miasm2/expression/expression_helper.py index 2fe5e26d..bb0d5adf 100644 --- a/miasm2/expression/expression_helper.py +++ b/miasm2/expression/expression_helper.py @@ -572,7 +572,6 @@ def possible_values(expr): consvals.update(possible_values(expr.src)) # Special case: constraint insertion elif isinstance(expr, m2_expr.ExprCond): - to_ret = set() src1cond = CondConstraintNotZero(expr.cond) src2cond = CondConstraintZero(expr.cond) consvals.update(ConstrainedValue(consval.constraints.union([src1cond]), |