about summary refs log tree commit diff stats
path: root/miasm2/ir/symbexec.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-07-07 08:04:07 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-07-07 12:32:47 +0200
commit0da61c83fdf9053b043391634a175b104b332e42 (patch)
treeca4d263d99382a919564e467740a20679f31bb54 /miasm2/ir/symbexec.py
parente3a4a92ae8300b51d02d9caa43ca9599fdf851f5 (diff)
downloadmiasm-0da61c83fdf9053b043391634a175b104b332e42.tar.gz
miasm-0da61c83fdf9053b043391634a175b104b332e42.zip
IR: rename get_bloc
Diffstat (limited to '')
-rw-r--r--miasm2/ir/symbexec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/ir/symbexec.py b/miasm2/ir/symbexec.py
index e98744c0..6d6ba630 100644
--- a/miasm2/ir/symbexec.py
+++ b/miasm2/ir/symbexec.py
@@ -530,7 +530,7 @@ class SymbolicExecutionEngine(object):
         return self.emul_ir_block(addr, step)
 
     def emul_ir_block(self, addr, step=False):
-        irblock = self.ir_arch.get_bloc(addr)
+        irblock = self.ir_arch.get_block(addr)
         if irblock is not None:
             addr = self.emulbloc(irblock, step=step)
         return addr
@@ -541,7 +541,7 @@ class SymbolicExecutionEngine(object):
 
     def emul_ir_blocks(self, addr, lbl_stop=None, step=False):
         while True:
-            irblock = self.ir_arch.get_bloc(addr)
+            irblock = self.ir_arch.get_block(addr)
             if irblock is None:
                 break
             if irblock.label == lbl_stop: