about summary refs log tree commit diff stats
path: root/example/ida/graph_ir.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2019-02-18 10:17:43 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2019-02-18 10:17:43 +0100
commitd55238892b813675547e248b1cc79b34401fd390 (patch)
treefcc65fd373a392ece7714b8efc9cb71a200758fc /example/ida/graph_ir.py
parent787817bd0428b6be475cea3e90b4413981579a5a (diff)
downloadmiasm-d55238892b813675547e248b1cc79b34401fd390.tar.gz
miasm-d55238892b813675547e248b1cc79b34401fd390.zip
Example: update ida api
Diffstat (limited to 'example/ida/graph_ir.py')
-rw-r--r--example/ida/graph_ir.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/example/ida/graph_ir.py b/example/ida/graph_ir.py
index b04979ac..f9c61c2c 100644
--- a/example/ida/graph_ir.py
+++ b/example/ida/graph_ir.py
@@ -11,11 +11,12 @@ from miasm2.core.bin_stream_ida import bin_stream_ida
 from miasm2.expression.simplifications import expr_simp
 from miasm2.ir.ir import IRBlock, AssignBlock
 
-from miasm2.analysis.ssa import SSADiGraph, UnSSADiGraph, DiGraphLivenessSSA
+from miasm2.analysis.ssa import SSADiGraph, UnSSADiGraph
 
 from miasm2.analysis.data_flow import dead_simp,  \
     merge_blocks, remove_empty_assignblks, \
-    PropagateExpr, load_from_int
+    PropagateExpr, load_from_int, \
+    DiGraphLivenessSSA
 
 
 from utils import guess_machine, expr2colorstr