diff options
| -rw-r--r-- | miasm/analysis/simplifier.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/miasm/analysis/simplifier.py b/miasm/analysis/simplifier.py index 43623476..51567e64 100644 --- a/miasm/analysis/simplifier.py +++ b/miasm/analysis/simplifier.py @@ -216,15 +216,6 @@ class IRCFGSimplifierSSA(IRCFGSimplifierCommon): return modified @fix_point - def do_propagate_int(self, ssa, head): - """ - Constant propagation in the @ssa graph - @head: Location instance of the graph head - """ - modified = self.propag_int.propagate(ssa, head) - return modified - - @fix_point def do_del_unused_edges(self, ssa, head): """ Del unused edges of the ssa graph @@ -233,15 +224,6 @@ class IRCFGSimplifierSSA(IRCFGSimplifierCommon): modified = del_unused_edges(ssa.graph, set([head])) return modified - @fix_point - def do_propagate_mem(self, ssa, head): - """ - Propagation of expression based on ExprInt/ExprId in the @ssa graph - @head: Location instance of the graph head - """ - modified = self.propag_mem.propagate(ssa, head) - return modified - def do_propagate_expressions(self, ssa, head): """ Expressions propagation through ExprId in the @ssa graph |