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/disasm/full.py | |
| parent | 0da61c83fdf9053b043391634a175b104b332e42 (diff) | |
| download | focaccia-miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.tar.gz focaccia-miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.zip | |
IR: rename add_bloc
Diffstat (limited to 'example/disasm/full.py')
| -rw-r--r-- | example/disasm/full.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py index dd0ac6cd..3e35ed6c 100644 --- a/example/disasm/full.py +++ b/example/disasm/full.py @@ -193,8 +193,8 @@ if args.gen_ir: for ad, all_block in all_funcs_blocks.items(): log.info("generating IR... %x" % ad) for block in all_block: - ir_arch_a.add_bloc(block) - ir_arch.add_bloc(block) + ir_arch_a.add_block(block) + ir_arch.add_block(block) log.info("Print blocks (without analyse)") for label, block in ir_arch.blocks.iteritems(): |