diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-06-22 20:48:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-22 20:48:32 +0200 |
| commit | fbf307796f56f68cedaf763563e478155b843b83 (patch) | |
| tree | b05c169e5ff17c800a2692e0d0ddc09bb34fb881 /miasm2/arch/mips32/jit.py | |
| parent | 191a47a37880caecb47f9b47ddf71fede335d1a0 (diff) | |
| parent | c33f2d988bda28a1b6dbe5a2c8bceb5819db9e42 (diff) | |
| download | miasm-fbf307796f56f68cedaf763563e478155b843b83.tar.gz miasm-fbf307796f56f68cedaf763563e478155b843b83.zip | |
Merge pull request #783 from commial/refactor/jitter-cleaning
Refactor/jitter cleaning
Diffstat (limited to 'miasm2/arch/mips32/jit.py')
| -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 dad70de8..c637fb13 100644 --- a/miasm2/arch/mips32/jit.py +++ b/miasm2/arch/mips32/jit.py @@ -71,7 +71,7 @@ class mipsCGen(CGen): loc_key = self.get_block_post_label(block) offset = self.ir_arch.symbol_pool.loc_key_to_offset(loc_key) - out = (self.CODE_RETURN_NO_EXCEPTION % (self.loc_key_to_jitlabel(loc_key), + out = (self.CODE_RETURN_NO_EXCEPTION % (loc_key, self.C_PC, m2_expr.ExprId('branch_dst_irdst', 32), m2_expr.ExprId('branch_dst_irdst', 32), |