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-Tag: llvmorg-10-init~8204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e043dadcad2e84a8fecb57efbbbd3f55b1b3a422;p=platform%2Fupstream%2Fllvm.git [X86] Remove check on isAsmParserOnly from EVEX2VEX tablegenerator. NFCI There are no instructions VEX or EVEX instructions that set this field. llvm-svn: 357973 --- diff --git a/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp b/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp index 7f1de1c..3df14f4 100644 --- a/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp +++ b/llvm/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).