diff options
author | Craig Topper <craig.topper@intel.com> | 2018-04-26 05:07:40 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-04-26 05:07:40 +0000 |
commit | bc26f3b61be1f846a69f318911b6e4b24e950bc8 (patch) | |
tree | 0d65cb27c62f75d1a40342c1e00c234ddb9fc9cc /llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h | |
parent | b0227189fdef5918b1239d2089e83a2b0c1cd182 (diff) | |
download | bcm5719-llvm-bc26f3b61be1f846a69f318911b6e4b24e950bc8.tar.gz bcm5719-llvm-bc26f3b61be1f846a69f318911b6e4b24e950bc8.zip |
[X86] Print 'tbyte ptr' instead of 'xword ptr' for f80mem in Intel syntax.
This matches objdump.
llvm-svn: 330922
Diffstat (limited to 'llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h')
-rw-r--r-- | llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h b/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h index ace31186a05..fdef8a85657 100644 --- a/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h +++ b/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h @@ -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) { |