diff options
| author | Ajax <commial@gmail.com> | 2018-06-21 17:33:47 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-06-21 17:33:47 +0200 |
| commit | b8d5b255bad4b03c57356c9af474e6d8a12105db (patch) | |
| tree | 1fdea855e3bd266343e4d330af5ac686d53fc240 /miasm2/arch/arm/sem.py | |
| parent | 98a60ebb7366cda9774fc0511185602cada1833b (diff) | |
| download | miasm-b8d5b255bad4b03c57356c9af474e6d8a12105db.tar.gz miasm-b8d5b255bad4b03c57356c9af474e6d8a12105db.zip | |
Code cleaning: remove useless / commented code
Diffstat (limited to 'miasm2/arch/arm/sem.py')
| -rw-r--r-- | miasm2/arch/arm/sem.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/miasm2/arch/arm/sem.py b/miasm2/arch/arm/sem.py index c80e9826..ccd56e8f 100644 --- a/miasm2/arch/arm/sem.py +++ b/miasm2/arch/arm/sem.py @@ -635,7 +635,6 @@ def st_ld_r(ir, instr, a, a2, b, store=False, size=32, s_ext=False, z_ext=False) base, off = b.args[0], b.args[1] # ExprInt(size/8, 32) else: base, off = b, ExprInt(0, 32) - # print a, wb, base, off, postinc if postinc: ad = base else: @@ -734,13 +733,11 @@ def ldrsh(ir, instr, a, b): def st_ld_m(ir, instr, a, b, store=False, postinc=False, updown=False): e = [] wb = False - # sb = False dst = None if isinstance(a, ExprOp) and a.op == 'wback': wb = True a = a.args[0] if isinstance(b, ExprOp) and b.op == 'sbit': - # sb = True b = b.args[0] regs = b.args base = a |