Skip to content

Commit

Permalink
x86: remove 'opaque' in the output of some instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Jan 19, 2014
1 parent ceae16d commit 38c1322
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/X86/X86ATTInstPrinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion arch/X86/X86IntelInstPrinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 38c1322

Please sign in to comment.