diff options
| author | Nutigp <33661228+Nutigoodpipes@users.noreply.github.com> | 2019-02-18 14:01:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-18 14:01:24 +0100 |
| commit | f1a55139ca3ec35ac8267c3d377dc67f33829e29 (patch) | |
| tree | fcc65fd373a392ece7714b8efc9cb71a200758fc /example/ida/graph_ir.py | |
| parent | 787817bd0428b6be475cea3e90b4413981579a5a (diff) | |
| parent | d55238892b813675547e248b1cc79b34401fd390 (diff) | |
| download | focaccia-miasm-f1a55139ca3ec35ac8267c3d377dc67f33829e29.tar.gz focaccia-miasm-f1a55139ca3ec35ac8267c3d377dc67f33829e29.zip | |
Merge pull request #977 from serpilliere/fix_ida_example
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 |