about summary refs log tree commit diff stats
path: root/miasm2/ir/ir.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2016-11-21 09:43:06 +0100
committerGitHub <noreply@github.com>2016-11-21 09:43:06 +0100
commitfe87a86bbd0689fc292bd27bde5c9e76daf1d653 (patch)
treee31214b77123f83e949d5d114034782db5040822 /miasm2/ir/ir.py
parentef394501384c5be63e22741a32b846d8a2f9cf94 (diff)
parenta7106c044b7c2caf71baf10360b439a1423d9b6a (diff)
downloadmiasm-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.py1
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),