about summary refs log tree commit diff stats
path: root/miasm2/core/cpu.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/core/cpu.py')
-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)