about summary refs log tree commit diff stats
path: root/test/arch/x86
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-07-07 08:17:30 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-07-07 12:33:47 +0200
commit7c98de47f759e98fafab5e203e1f2d13e559f2cc (patch)
tree04f99c8ce69885d911054a9bb521f1a16ed6f825 /test/arch/x86
parent0da61c83fdf9053b043391634a175b104b332e42 (diff)
downloadmiasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.tar.gz
miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.zip
IR: rename add_bloc
Diffstat (limited to 'test/arch/x86')
-rwxr-xr-xtest/arch/x86/sem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/arch/x86/sem.py b/test/arch/x86/sem.py
index 7b6a20b7..c08cf3f6 100755
--- a/test/arch/x86/sem.py
+++ b/test/arch/x86/sem.py
@@ -50,7 +50,7 @@ def compute_txt(ir, mode, txt, inputstate={}, debug=False):
     patches = asmblock.asm_resolve_final(mn, blocks, symbol_pool)
     interm = ir(symbol_pool)
     for bbl in blocks:
-        interm.add_bloc(bbl)
+        interm.add_block(bbl)
     return symb_exec(interm, inputstate, debug)
 
 op_add = lambda a, b: a+b