diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-15 16:01:40 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-13 14:13:13 +0100 |
| commit | 9f04c551bddbc7fcab1921a2081a6ee9ea50a2f2 (patch) | |
| tree | 1dee93cb415b8cc271637e332c09d223655929f2 /miasm2/ir/ir.py | |
| parent | 287cb1bb182112ad8b476a9631f0099163041fdc (diff) | |
| download | miasm-9f04c551bddbc7fcab1921a2081a6ee9ea50a2f2.tar.gz miasm-9f04c551bddbc7fcab1921a2081a6ee9ea50a2f2.zip | |
Asmbloc: rename asm_bloc to AsmBlock
Diffstat (limited to 'miasm2/ir/ir.py')
| -rw-r--r-- | miasm2/ir/ir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/ir/ir.py b/miasm2/ir/ir.py index 7f1b00d6..c2e63132 100644 --- a/miasm2/ir/ir.py +++ b/miasm2/ir/ir.py @@ -25,7 +25,7 @@ import miasm2.expression.expression as m2_expr from miasm2.expression.expression_helper import get_missing_interval from miasm2.expression.simplifications import expr_simp from miasm2.core.asmbloc import asm_symbol_pool, expr_is_label, asm_label, \ - asm_bloc + AsmBlock from miasm2.core.graph import DiGraph @@ -377,7 +377,7 @@ class IntermediateRepresentation(object): return self.blocks.get(label, None) def add_instr(self, l, ad=0, gen_pc_updt=False): - b = asm_bloc(self.gen_label()) + b = AsmBlock(self.gen_label()) b.lines = [l] self.add_bloc(b, gen_pc_updt) |