diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 08:17:30 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 12:33:47 +0200 |
| commit | 7c98de47f759e98fafab5e203e1f2d13e559f2cc (patch) | |
| tree | 04f99c8ce69885d911054a9bb521f1a16ed6f825 /example/expression/asm_to_ir.py | |
| parent | 0da61c83fdf9053b043391634a175b104b332e42 (diff) | |
| download | focaccia-miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.tar.gz focaccia-miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.zip | |
IR: rename add_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(): |