about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2016-11-20 23:01:42 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-11-20 23:01:42 +0100
commit1210ca382591d3c099d7554a031dbf90965decef (patch)
treebd015b1c63d426e36a569386eea988167f70c9c1
parent4de52321c6e1f0e60ec6c015ce577ce159ff9f3d (diff)
downloadmiasm-1210ca382591d3c099d7554a031dbf90965decef.tar.gz
miasm-1210ca382591d3c099d7554a031dbf90965decef.zip
Ir: remove dbg log
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),