diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-26 20:38:02 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-27 21:12:14 +0100 |
| commit | 31baf840e8badd6789754379aa28b07c66a80244 (patch) | |
| tree | c1693ad6d9241dfca756f3d781ab36982055d396 | |
| parent | 6e0eb4f5eb8c53fc6002b955b96a5c06213d220f (diff) | |
| download | miasm-31baf840e8badd6789754379aa28b07c66a80244.tar.gz miasm-31baf840e8badd6789754379aa28b07c66a80244.zip | |
Arch/mips/arch: fix br off
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/mips32/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/mips32/arch.py b/miasm2/arch/mips32/arch.py index 12f4ff8e..f2f92776 100644 --- a/miasm2/arch/mips32/arch.py +++ b/miasm2/arch/mips32/arch.py @@ -126,7 +126,7 @@ class instruction_mips32(cpu.instruction): if not isinstance(e, ExprInt): return - ad = e.arg + self.offset + 4 + ad = e.arg + self.offset l = symbol_pool.getby_offset_create(ad) s = ExprId(l, e.size) self.args[ndx] = s |