about summary refs log tree commit diff stats
path: root/example/symbol_exec
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-12-12 14:35:24 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-12-12 14:35:24 +0100
commitb32eb145fce7dd09bef025a9f82b2507bd4e02ee (patch)
tree2c65f005adb7830853664451aed3f2cd05a9be73 /example/symbol_exec
parent635f372fa846b28252ab86b344a2565f51e2302c (diff)
parentd95af9858230c41449d6fd487a93bdc337780ea7 (diff)
downloadmiasm-b32eb145fce7dd09bef025a9f82b2507bd4e02ee.tar.gz
miasm-b32eb145fce7dd09bef025a9f82b2507bd4e02ee.zip
Merge pull request #290 from commial/refactor-ira
Refactor ira
Diffstat (limited to 'example/symbol_exec')
-rw-r--r--example/symbol_exec/depgraph.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/example/symbol_exec/depgraph.py b/example/symbol_exec/depgraph.py
index 6aa9cf81..a870b275 100644
--- a/example/symbol_exec/depgraph.py
+++ b/example/symbol_exec/depgraph.py
@@ -61,9 +61,6 @@ blocks = mdis.dis_multibloc(int(args.func_addr, 0))
 for block in blocks:
     ir_arch.add_bloc(block)
 
-# Build the IRA Graph
-ir_arch.gen_graph()
-
 # Get the instance
 dg = DependencyGraph(ir_arch, implicit=args.implicit,
 		     apply_simp=not(args.do_not_simplify),