about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2020-12-29 11:30:29 +0100
committerGitHub <noreply@github.com>2020-12-29 11:30:29 +0100
commit82dfab47f7515defe0844bae4a404ed32c153a5b (patch)
tree94461665e3ebfe41065de34ff7b1459bdf6c098f
parent6cf64f7c61849d7acc06a5e451d0b2b43d9f98ba (diff)
parent568e0fce7df37b55aa1801edd064d6437cebdf68 (diff)
downloadmiasm-82dfab47f7515defe0844bae4a404ed32c153a5b.tar.gz
miasm-82dfab47f7515defe0844bae4a404ed32c153a5b.zip
Merge pull request #1341 from serpilliere/rm_debug
Rm debug
Diffstat (limited to '')
-rw-r--r--miasm/analysis/data_flow.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/miasm/analysis/data_flow.py b/miasm/analysis/data_flow.py
index 6930d53c..0a66447c 100644
--- a/miasm/analysis/data_flow.py
+++ b/miasm/analysis/data_flow.py
@@ -1547,7 +1547,6 @@ class DelDummyPhi(object):
                     node = todo.pop()
                     if node in done:
                         continue
-                    print(node)
                     known.add(node)
                     is_ok = True
                     for parent in equivalence_graph.predecessors(node):