about summary refs log tree commit diff stats
path: root/example/symbol_exec
diff options
context:
space:
mode:
Diffstat (limited to 'example/symbol_exec')
-rw-r--r--example/symbol_exec/depgraph.py2
-rw-r--r--example/symbol_exec/single_instr.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/example/symbol_exec/depgraph.py b/example/symbol_exec/depgraph.py
index 56ca3f82..75942ec1 100644
--- a/example/symbol_exec/depgraph.py
+++ b/example/symbol_exec/depgraph.py
@@ -63,7 +63,7 @@ blocks = mdis.dis_multibloc(int(args.func_addr, 0))
 
 # Generate IR
 for block in blocks:
-    ir_arch.add_bloc(block)
+    ir_arch.add_block(block)
 
 # Get the instance
 dg = DependencyGraph(ir_arch, implicit=args.implicit,
diff --git a/example/symbol_exec/single_instr.py b/example/symbol_exec/single_instr.py
index c31de738..1d520d3a 100644
--- a/example/symbol_exec/single_instr.py
+++ b/example/symbol_exec/single_instr.py
@@ -18,7 +18,7 @@ asm_block = mdis.dis_bloc(START_ADDR)
 
 # Translate ASM -> IR
 ira = machine.ira(mdis.symbol_pool)
-ira.add_bloc(asm_block)
+ira.add_block(asm_block)
 
 # Instanciate a Symbolic Execution engine with default value for registers
 ## EAX = EAX_init, ...