diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-14 16:32:54 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-13 13:56:26 +0100 |
| commit | b9c87b0e9167940fbbadf0f642e07ee9d7a678e5 (patch) | |
| tree | 44af3f4626074209c650e2efee9e003e11346422 /miasm2/arch/arm/sem.py | |
| parent | d8cbc059655bd275b5e178b2339b931d9f0b126a (diff) | |
| download | miasm-b9c87b0e9167940fbbadf0f642e07ee9d7a678e5.tar.gz miasm-b9c87b0e9167940fbbadf0f642e07ee9d7a678e5.zip | |
IR/ir: rename irbloc to IRBlock
Diffstat (limited to 'miasm2/arch/arm/sem.py')
| -rw-r--r-- | miasm2/arch/arm/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/arm/sem.py b/miasm2/arch/arm/sem.py index 225b393c..742032e6 100644 --- a/miasm2/arch/arm/sem.py +++ b/miasm2/arch/arm/sem.py @@ -1,5 +1,5 @@ from miasm2.expression.expression import * -from miasm2.ir.ir import ir, irbloc +from miasm2.ir.ir import ir, IRBlock from miasm2.arch.arm.arch import mn_arm, mn_armt from miasm2.arch.arm.regs import * @@ -1055,7 +1055,7 @@ def add_condition_expr(ir, instr, cond, instr_ir): break if not has_irdst: instr_ir.append(ExprAff(ir.IRDst, lbl_next)) - e_do = irbloc(lbl_do.name, [instr_ir]) + e_do = IRBlock(lbl_do.name, [instr_ir]) e = [ExprAff(ir.IRDst, dst_cond)] return e, [e_do] |