diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-02-18 14:19:56 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-02-18 20:42:54 +0100 |
| commit | d2cc082ba50397609e186d516b75226d638841d3 (patch) | |
| tree | cd47a1cd48aa096f852654c774402bca903e3748 /miasm2/arch/mips32/ira.py | |
| parent | d7b6cd2f8a992b56bec4a8aa60f1cdf99a560583 (diff) | |
| download | miasm-d2cc082ba50397609e186d516b75226d638841d3.tar.gz miasm-d2cc082ba50397609e186d516b75226d638841d3.zip | |
PyLint: Import errors, pointless statements (`fds`), bad indentation
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/mips32/ira.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/mips32/ira.py b/miasm2/arch/mips32/ira.py index c070b4ba..f88172fb 100644 --- a/miasm2/arch/mips32/ira.py +++ b/miasm2/arch/mips32/ira.py @@ -49,8 +49,8 @@ class ir_a_mips32l(ir_mips32l, ira): #print 'TEST', l, hex(lr_val.arg), hex(l.offset + 8) #print lr_val.arg, hex(l.offset + l.l) if lr_val.arg != l.offset + 8: - fds - continue + raise ValueError("Wrong arg") + # print 'IS CALL!' lbl = bloc.get_next() new_lbl = self.gen_label() |