about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-01-26 11:08:50 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-01-26 11:08:50 +0100
commit441c3eb7efe7a5f2ed9fba85ba1f15e899a5c30e (patch)
tree23d7b9fb61df62b27a27de3705119a0ae3651650 /test
parentd1ea12c319f17d852404b9daa43cc9dd3b286360 (diff)
downloadmiasm-441c3eb7efe7a5f2ed9fba85ba1f15e899a5c30e.tar.gz
miasm-441c3eb7efe7a5f2ed9fba85ba1f15e899a5c30e.zip
Core/ASMBloc: resolve_symbol now returns only the resolved blocs
Diffstat (limited to 'test')
-rw-r--r--test/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 de2d14f3..d2c998c8 100644
--- a/test/arch/x86/sem.py
+++ b/test/arch/x86/sem.py
@@ -51,7 +51,7 @@ def compute_txt(ir, mode, txt, inputstate={}, debug=False):
         mn, blocs[0], symbol_pool)
     interm = ir(symbol_pool)
     for bbl in resolved_b:
-        interm.add_bloc(bbl[0])
+        interm.add_bloc(bbl)
     return symb_exec(interm, inputstate, debug)
 
 op_add = lambda a, b: a+b