diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2014-12-09 17:22:34 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2014-12-09 17:22:34 +0100 |
| commit | 4bcb67783080491d11932a7489cae50ece72fa8f (patch) | |
| tree | d024bea6baad27591ecd17d1f95e67a7f154d87f | |
| parent | 3d309ba48a816dc3a634e90b40c5214c3f16dc09 (diff) | |
| download | miasm-4bcb67783080491d11932a7489cae50ece72fa8f.tar.gz miasm-4bcb67783080491d11932a7489cae50ece72fa8f.zip | |
Expression: Fix ExprCompose:get_w (wrong copy/paste ?)
| -rw-r--r-- | miasm2/expression/expression.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/expression/expression.py b/miasm2/expression/expression.py index d59dca2c..af932512 100644 --- a/miasm2/expression/expression.py +++ b/miasm2/expression/expression.py @@ -866,7 +866,7 @@ class ExprCompose(Expr): def get_w(self): return reduce(lambda x, y: - x.union(y[0].get_r(mem_read, cst_read)), self.args, set()) + x.union(y[0].get_w()), self.args, set()) def __contains__(self, e): if self == e: |