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/mips32/sem.py | |
| parent | d8cbc059655bd275b5e178b2339b931d9f0b126a (diff) | |
| download | miasm-b9c87b0e9167940fbbadf0f642e07ee9d7a678e5.tar.gz miasm-b9c87b0e9167940fbbadf0f642e07ee9d7a678e5.zip | |
IR/ir: rename irbloc to IRBlock
Diffstat (limited to 'miasm2/arch/mips32/sem.py')
| -rw-r--r-- | miasm2/arch/mips32/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/mips32/sem.py b/miasm2/arch/mips32/sem.py index b52b8401..74ad4f3e 100644 --- a/miasm2/arch/mips32/sem.py +++ b/miasm2/arch/mips32/sem.py @@ -1,5 +1,5 @@ import miasm2.expression.expression as m2_expr -from miasm2.ir.ir import ir, irbloc +from miasm2.ir.ir import ir, IRBlock from miasm2.arch.mips32.arch import mn_mips32 from miasm2.arch.mips32.regs import R_LO, R_HI, PC, RA from miasm2.core.sembuilder import SemBuilder @@ -468,7 +468,7 @@ class ir_mips32l(ir): if c is None: # print 'new c' label = self.get_label(l) - c = irbloc(label, [], []) + c = IRBlock(label, [], []) ir_blocs_all.append(c) bloc_dst = None # print 'Translate', l |