diff options
Diffstat (limited to 'miasm2/core/parse_asm.py')
| -rw-r--r-- | miasm2/core/parse_asm.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/miasm2/core/parse_asm.py b/miasm2/core/parse_asm.py index e60c8ca7..7ddf838c 100644 --- a/miasm2/core/parse_asm.py +++ b/miasm2/core/parse_asm.py @@ -198,9 +198,6 @@ def parse_txt(mnemo, attrib, txt, loc_db=None): line = line[:line.find(';')] line = line.strip(' ').strip('\t') instr = mnemo.fromstring(line, loc_db, attrib) - - if instr.dstflow(): - instr.dstflow2label(loc_db) lines.append(instr) asmblock.log_asmblock.info("___pre asm oki___") |