[X86] Print 'tbyte ptr' instead of 'xword ptr' for f80mem in Intel syntax.

This matches objdump.

llvm-svn: 330922
This commit is contained in:
Craig Topper 2018-04-26 05:07:40 +00:00
parent b0227189fd
commit bc26f3b61b
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public:
printMemReference(MI, OpNo, O);
}
void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
O << "xword ptr ";
O << "tbyte ptr ";
printMemReference(MI, OpNo, O);
}
void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {