x86: fix att syntax when imm operand is 0 (#1046)

This commit is contained in:
Nguyen Anh Quynh 2017-11-17 10:26:26 +03:00
parent e965a58ef4
commit 6abcc704fd
1 changed files with 1 additions and 2 deletions

View File

@ -808,8 +808,7 @@ static void printMemReference(MCInst *MI, unsigned Op, SStream *O)
} }
} }
} else { } else {
if (segreg) SStream_concat0(O, "0");
SStream_concat0(O, "0");
} }
} }