forked from OSchip/llvm-project
[X86] Remove check on isAsmParserOnly from EVEX2VEX tablegenerator. NFCI
There are no instructions VEX or EVEX instructions that set this field. llvm-svn: 357973
This commit is contained in:
parent
53ee783c6e
commit
e043dadcad
|
@ -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).
|
||||
|
|
Loading…
Reference in New Issue