From: Craig Topper Date: Tue, 9 Apr 2019 07:40:19 +0000 (+0000) Subject: [X86] Remove check on isAsmParserOnly from EVEX2VEX tablegenerator. NFCI X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5011b0f51bf551be292135f824a41d3230fd3fd3;p=llvm [X86] Remove check on isAsmParserOnly from EVEX2VEX tablegenerator. NFCI There are no instructions VEX or EVEX instructions that set this field. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357973 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp b/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp index 7f1de1c403d..3df14f40e4a 100644 --- a/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp +++ b/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp @@ -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).