diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-02-18 10:17:43 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-02-18 10:17:43 +0100 |
| commit | d55238892b813675547e248b1cc79b34401fd390 (patch) | |
| tree | fcc65fd373a392ece7714b8efc9cb71a200758fc /example/ida/graph_ir.py | |
| parent | 787817bd0428b6be475cea3e90b4413981579a5a (diff) | |
| download | miasm-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.py | 5 |
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 |