diff options
| author | Camille Mougey <commial@gmail.com> | 2016-11-21 09:43:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-21 09:43:06 +0100 |
| commit | fe87a86bbd0689fc292bd27bde5c9e76daf1d653 (patch) | |
| tree | e31214b77123f83e949d5d114034782db5040822 /miasm2/ir/ir.py | |
| parent | ef394501384c5be63e22741a32b846d8a2f9cf94 (diff) | |
| parent | a7106c044b7c2caf71baf10360b439a1423d9b6a (diff) | |
| download | miasm-fe87a86bbd0689fc292bd27bde5c9e76daf1d653.tar.gz miasm-fe87a86bbd0689fc292bd27bde5c9e76daf1d653.zip | |
Merge pull request #454 from serpilliere/fix_expr_pickle
Fix expr pickle
Diffstat (limited to '')
| -rw-r--r-- | miasm2/ir/ir.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/miasm2/ir/ir.py b/miasm2/ir/ir.py index d8cccc64..e513c179 100644 --- a/miasm2/ir/ir.py +++ b/miasm2/ir/ir.py @@ -74,7 +74,6 @@ class AssignBlock(dict): expr_list = [(new_dst, new_src), (new_dst, self[new_dst])] # Find collision - print 'FIND COLISION' e_colision = reduce(lambda x, y: x.union(y), (self.get_modified_slice(dst, src) for (dst, src) in expr_list), |