diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-10-17 12:48:20 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-11-04 16:45:46 +0100 |
| commit | abbc51905c2c392b259f43c681ed9617168add5e (patch) | |
| tree | cec3c008ded0d84084e4ab37505a53bb4cb30554 /miasm2/expression/expression.py | |
| parent | 89795337461e2a2eeae42324e023582b93067996 (diff) | |
| download | miasm-abbc51905c2c392b259f43c681ed9617168add5e.tar.gz miasm-abbc51905c2c392b259f43c681ed9617168add5e.zip | |
IR: is_simp in the simplifier class
Diffstat (limited to 'miasm2/expression/expression.py')
| -rw-r--r-- | miasm2/expression/expression.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/miasm2/expression/expression.py b/miasm2/expression/expression.py index 92735734..1473838b 100644 --- a/miasm2/expression/expression.py +++ b/miasm2/expression/expression.py @@ -118,7 +118,6 @@ class Expr(object): all_exprs = set() args2expr = {} - simp_exprs = set() canon_exprs = set() use_singleton = True @@ -147,15 +146,6 @@ class Expr(object): expr = object.__new__(cls, *args, **kwargs) return expr - def get_is_simp(self): - return self in Expr.simp_exprs - - def set_is_simp(self, value): - assert(value is True) - Expr.simp_exprs.add(self) - - is_simp = property(get_is_simp, set_is_simp) - def get_is_canon(self): return self in Expr.canon_exprs |