suppress branch indication in mnemonic for now

This commit is contained in:
Jan
2021-01-07 10:20:57 +01:00
committed by GitHub
parent 4f8ed13309
commit 4dbcfbda5d

View File

@@ -288,7 +288,7 @@ class ParserX86ATT(BaseParser):
operands.append(self.process_operand(result['operand4']))
return_dict = AttrDict(
{
self.INSTRUCTION_ID: result['mnemonic'],
self.INSTRUCTION_ID: result['mnemonic'].split(',')[0],
self.OPERANDS_ID: operands,
self.COMMENT_ID: ' '.join(result[self.COMMENT_ID])
if self.COMMENT_ID in result