[X86] Print 'tbyte ptr' instead of 'xword ptr' for f80mem in Intel syntax.
authorCraig Topper <craig.topper@intel.com>
Thu, 26 Apr 2018 05:07:40 +0000 (05:07 +0000)
committerCraig Topper <craig.topper@intel.com>
Thu, 26 Apr 2018 05:07:40 +0000 (05:07 +0000)
This matches objdump.

llvm-svn: 330922

llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h

index ace3118..fdef8a8 100644 (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) {