diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-08-24 15:39:47 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-08-24 15:39:47 +0200 |
| commit | 4c2224a784c15784597624fadd6d9a5dae7d37a2 (patch) | |
| tree | 5bb5cf067070f98ca117829af9dc02ecbe47483b /miasm2/core/parse_asm.py | |
| parent | 2ae7ffe2459adb872c27b434810f5f5673d8d68d (diff) | |
| download | miasm-4c2224a784c15784597624fadd6d9a5dae7d37a2.tar.gz miasm-4c2224a784c15784597624fadd6d9a5dae7d37a2.zip | |
Core: fix asm int
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 7efa17d0..aeb5d219 100644 --- a/miasm2/core/parse_asm.py +++ b/miasm2/core/parse_asm.py @@ -199,9 +199,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___") |