diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-04-18 16:03:04 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2017-04-18 16:03:04 +0200 |
| commit | 2580f884fcbaaf29ae235f0f10d5ed62f6ffdf22 (patch) | |
| tree | 9c77991accffe970a7bca66128f6b13334e03905 /miasm2/arch/mips32/jit.py | |
| parent | 66914aadcef60d590468f39a44d710aa28b0b772 (diff) | |
| download | miasm-2580f884fcbaaf29ae235f0f10d5ed62f6ffdf22.tar.gz miasm-2580f884fcbaaf29ae235f0f10d5ed62f6ffdf22.zip | |
Jitter: fix symb cache name (#525)
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/mips32/jit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/mips32/jit.py b/miasm2/arch/mips32/jit.py index 0ba531f1..bfa9c5fd 100644 --- a/miasm2/arch/mips32/jit.py +++ b/miasm2/arch/mips32/jit.py @@ -63,7 +63,7 @@ class mipsCGen(CGen): """ lbl = self.get_block_post_label(block) - out = (self.CODE_RETURN_NO_EXCEPTION % (lbl.name, + out = (self.CODE_RETURN_NO_EXCEPTION % (self.label_to_jitlabel(lbl), self.C_PC, m2_expr.ExprId('branch_dst_irdst'), m2_expr.ExprId('branch_dst_irdst'), |