about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2016-02-02 21:41:18 +0100
committerAjax <commial@gmail.com>2016-02-04 23:20:21 +0100
commit03f27317f139a52f7dcd2d3a4cf56ec0dad1a1cc (patch)
tree4a175168ecf5d83eeb1efa1a8854166db90efcc5
parentab03ff051ab28864d92bfabd507f93ff630a24b8 (diff)
downloadmiasm-03f27317f139a52f7dcd2d3a4cf56ec0dad1a1cc.tar.gz
miasm-03f27317f139a52f7dcd2d3a4cf56ec0dad1a1cc.zip
Miasm/CPU: remove factor_tree, useless and unused function
-rw-r--r--miasm2/core/cpu.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/miasm2/core/cpu.py b/miasm2/core/cpu.py
index 9fe6e70f..0a1c21a5 100644
--- a/miasm2/core/cpu.py
+++ b/miasm2/core/cpu.py
@@ -790,15 +790,6 @@ def factor_fields_all(tree):
     return new_keys
 
 
-def factor_tree(tree):
-    new_keys = {}
-    i = 1
-    min_len = min([x[0] for x in tree.keys()])
-    while i < min_len:
-
-        i += 1
-
-
 def graph_tree(tree):
     nodes = []
     branch2nodes(tree, nodes)