diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-01-26 19:52:07 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-01-26 19:52:07 +0100 |
| commit | a3900fe1a46b585771a576478ce47bc94e35537f (patch) | |
| tree | e06802c76e800e8c57aa8d1a903fd90eb440854b /test/arch/x86/sem.py | |
| parent | 9ce67b459cc8946c81181ab22030786450b8b0c5 (diff) | |
| parent | cc48c135915bd71ba23bd895fe6f2d57e61a0995 (diff) | |
| download | miasm-a3900fe1a46b585771a576478ce47bc94e35537f.tar.gz miasm-a3900fe1a46b585771a576478ce47bc94e35537f.zip | |
Merge pull request #49 from commial/refactor-asmbloc
Refactor asmbloc
Diffstat (limited to 'test/arch/x86/sem.py')
| -rw-r--r-- | test/arch/x86/sem.py | 2 |
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 |