[X86] Remove check on isAsmParserOnly from EVEX2VEX tablegenerator. NFCI
authorCraig Topper <craig.topper@intel.com>
Tue, 9 Apr 2019 07:40:19 +0000 (07:40 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 9 Apr 2019 07:40:19 +0000 (07:40 +0000)
There are no instructions VEX or EVEX instructions that set this field.

llvm-svn: 357973

llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp

index 7f1de1c..3df14f4 100644 (file)
@@ -109,9 +109,7 @@ public:
         (!(VEX_WIG || (!EVEX_WIG && EVEX_W == VEX_W) ||
            (EVEX_W1_VEX_W0 && EVEX_W && !VEX_W))) ||
         // Instruction's format
-        RecV->getValueAsDef("Form") != RecE->getValueAsDef("Form") ||
-        RecV->getValueAsBit("isAsmParserOnly") !=
-            RecE->getValueAsBit("isAsmParserOnly"))
+        RecV->getValueAsDef("Form") != RecE->getValueAsDef("Form"))
       return false;
 
     // This is needed for instructions with intrinsic version (_Int).