about summary refs log tree commit diff stats
path: root/example/symbol_exec/depgraph.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2015-12-04 18:46:48 +0100
committerAjax <commial@gmail.com>2015-12-07 11:15:43 +0100
commit308a634b7c2c20692e85f5b72178e00d072b7bcd (patch)
tree3e091aef76acdf18d6592c2a058345d87489227b /example/symbol_exec/depgraph.py
parent42d4998c1646e48fd9cb150d1aa0e9970b5717c8 (diff)
downloadmiasm-308a634b7c2c20692e85f5b72178e00d072b7bcd.tar.gz
miasm-308a634b7c2c20692e85f5b72178e00d072b7bcd.zip
IR: replace `.g` with a lazy built `.graph`, avoiding the need of `gen_graph`
Diffstat (limited to 'example/symbol_exec/depgraph.py')
-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),