diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-15 07:20:23 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-13 14:13:09 +0100 |
| commit | c3940991f2461278fdb3c7faff8b270320585556 (patch) | |
| tree | d4eae779f301e0d346c757b92e7461a7d4dd4c89 /miasm2/arch/mips32/ira.py | |
| parent | e94fb099ce7cf80f57d21306de4c2b59ce7b3006 (diff) | |
| download | miasm-c3940991f2461278fdb3c7faff8b270320585556.tar.gz miasm-c3940991f2461278fdb3c7faff8b270320585556.zip | |
IR: rename blocs to blocks
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/mips32/ira.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/mips32/ira.py b/miasm2/arch/mips32/ira.py index bb51c055..630daa56 100644 --- a/miasm2/arch/mips32/ira.py +++ b/miasm2/arch/mips32/ira.py @@ -43,7 +43,7 @@ class ir_a_mips32l(ir_mips32l, ira): ExprId(lbl, size=self.pc.size))])) nblock = IRBlock(new_lbl, irs) nblock.lines = [line] * len(irs) - self.blocs[new_lbl] = nblock + self.blocks[new_lbl] = nblock irb.dst = ExprId(new_lbl, size=self.pc.size) def get_out_regs(self, _): |