diff options
| author | serpilliere <devnull@localhost> | 2014-09-12 00:35:25 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-09-12 00:35:25 +0200 |
| commit | 16b46b4ebebe2584512daf664ff4753fd9d0159b (patch) | |
| tree | 0343e8428bcbe9fa62bc19dc7da917d0990a4384 /miasm2/arch/mips32/ira.py | |
| parent | 56db4204751bcda47b6a653f6f2347b254b976d9 (diff) | |
| download | miasm-16b46b4ebebe2584512daf664ff4753fd9d0159b.tar.gz miasm-16b46b4ebebe2584512daf664ff4753fd9d0159b.zip | |
mips: add mnemo; fix irdst
Diffstat (limited to 'miasm2/arch/mips32/ira.py')
| -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 bc9e2439..cb084411 100644 --- a/miasm2/arch/mips32/ira.py +++ b/miasm2/arch/mips32/ira.py @@ -55,7 +55,7 @@ class ir_a_mips32(ir_mips32, ira): lbl = bloc.get_next() new_lbl = self.gen_label() irs = self.call_effects(pc_val) - irs.append([ExprAff(IRDst, ExprId(lbl, size=self.pc.size))]) + irs.append([ExprAff(self.IRDst, ExprId(lbl, size=self.pc.size))]) nbloc = irbloc(new_lbl, irs) nbloc.lines = [l] self.blocs[new_lbl] = nbloc |