diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-07-20 19:35:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-20 19:35:49 +0200 |
| commit | 4dfca940e75ad8af65b69dd9bab9ff503141984b (patch) | |
| tree | aad96a02c272397eae9fd7377ea86a713814516a /example/expression/asm_to_ir.py | |
| parent | e45256e15c62aba315ab1e2db5697a14837f5827 (diff) | |
| parent | 4fcd0faa925d8d33db3622430548e932443d6f02 (diff) | |
| download | focaccia-miasm-4dfca940e75ad8af65b69dd9bab9ff503141984b.tar.gz focaccia-miasm-4dfca940e75ad8af65b69dd9bab9ff503141984b.zip | |
Merge pull request #579 from serpilliere/fix_get_bloc
Fix get bloc
Diffstat (limited to 'example/expression/asm_to_ir.py')
| -rw-r--r-- | example/expression/asm_to_ir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/asm_to_ir.py b/example/expression/asm_to_ir.py index 058910e3..786b860e 100644 --- a/example/expression/asm_to_ir.py +++ b/example/expression/asm_to_ir.py @@ -38,7 +38,7 @@ ir_arch = ir_a_x86_32(symbol_pool) for block in blocks: print 'add block' print block - ir_arch.add_bloc(block) + ir_arch.add_block(block) # Display IR for lbl, irblock in ir_arch.blocks.items(): |