about summary refs log tree commit diff stats
path: root/miasm2/core/parse_asm.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-08-24 18:22:41 +0200
committerGitHub <noreply@github.com>2018-08-24 18:22:41 +0200
commit7a87d94ca4e8b8df8e91f444087b594616cbc689 (patch)
treeb7defae06be1db3a2935f2b9247c4f6b908b39c9 /miasm2/core/parse_asm.py
parent68ffd93563d885102d31b7023c0ee62f85df7146 (diff)
parent4c2224a784c15784597624fadd6d9a5dae7d37a2 (diff)
downloadmiasm-7a87d94ca4e8b8df8e91f444087b594616cbc689.tar.gz
miasm-7a87d94ca4e8b8df8e91f444087b594616cbc689.zip
Merge pull request #831 from serpilliere/fix_asm_parse
Core: fix asm int
Diffstat (limited to 'miasm2/core/parse_asm.py')
-rw-r--r--miasm2/core/parse_asm.py3
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___")