diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-26 20:40:29 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-27 21:25:08 +0100 |
| commit | 1507343ca4b2d437ca51c137ce8be68dd5bcb9da (patch) | |
| tree | 343986aa66ea79df9eacbf371a9d541104873050 | |
| parent | cfb77ea2340ecaa9f15c476e56474f63160e1d69 (diff) | |
| download | miasm-1507343ca4b2d437ca51c137ce8be68dd5bcb9da.tar.gz miasm-1507343ca4b2d437ca51c137ce8be68dd5bcb9da.zip | |
Arch/mips/arch: remove dbg print
| -rw-r--r-- | miasm2/arch/mips32/arch.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/miasm2/arch/mips32/arch.py b/miasm2/arch/mips32/arch.py index f2f92776..a5463b6f 100644 --- a/miasm2/arch/mips32/arch.py +++ b/miasm2/arch/mips32/arch.py @@ -174,18 +174,14 @@ class instruction_mips32(cpu.instruction): def fixDstOffset(self): ndx = self.get_dst_num() e = self.args[ndx] - print 'FIX', ndx, e, self.offset, self.l if self.offset is None: raise ValueError('symbol not resolved %s' % self.l) if not isinstance(e, ExprInt): return off = e.arg - self.offset - print "diff", e, hex(self.offset) - print hex(off) if int(off % 4): raise ValueError('strange offset! %r' % off) self.args[ndx] = ExprInt32(off) - print 'final', self def get_args_expr(self): args = [a for a in self.args] @@ -444,8 +440,6 @@ class mips32_eposh(mips32_imm, cpu.m_arg): return True -class mips32_imm(mips32_imm): - pass class mips32_cpr(cpu.m_arg): |