Skip to content

Commit 6371de5

Browse files
fix x86 output: remove parenthesis
1 parent 32f5670 commit 6371de5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plasma/lib/arch/x86/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def _sub_asm_inst(self, i, tab=0):
422422
# Be sure to differentiate between the SSE instruction MOVSD and the non SSE move string
423423
if i.id in INST_MOVS and not is_sse_movd(i):
424424
self._operand(i, 0)
425-
self._add("( = ")
425+
self._add(" = ")
426426
self._operand(i, 1)
427427
self._new_line()
428428
self._tabs(tab)

0 commit comments

Comments
 (0)