x86: remove 'opaque' in the output of some instructions

This commit is contained in:
Nguyen Anh Quynh 2014-01-19 17:23:08 +08:00
parent ceae16d5a9
commit 38c1322bde
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ static void printMemReference(MCInst *MI, unsigned Op, SStream *O);
static void printopaquemem(MCInst *MI, unsigned OpNo, SStream *O)
{
SStream_concat(O, "opaque ptr ");
SStream_concat(O, "ptr ");
printMemReference(MI, OpNo, O);
}

View File

@ -32,7 +32,7 @@ static void printMemReference(MCInst *MI, unsigned Op, SStream *O);
static void printopaquemem(MCInst *MI, unsigned OpNo, SStream *O)
{
SStream_concat(O, "opaque ptr ");
SStream_concat(O, "ptr ");
printMemReference(MI, OpNo, O);
}