forked from OSchip/llvm-project
Ignore isCodeGenOnly instructions when generating diassembly tables.
llvm-svn: 127619
This commit is contained in:
parent
59a549b7ec
commit
0fabf10388
|
@ -1224,7 +1224,8 @@ bool FixedLenDecoderEmitter::populateInstruction(const CodeGenInstruction &CGI,
|
||||||
if (Bits.allInComplete()) return false;
|
if (Bits.allInComplete()) return false;
|
||||||
|
|
||||||
// Ignore "asm parser only" instructions.
|
// Ignore "asm parser only" instructions.
|
||||||
if (Def.getValueAsBit("isAsmParserOnly"))
|
if (Def.getValueAsBit("isAsmParserOnly") ||
|
||||||
|
Def.getValueAsBit("isCodeGenOnly"))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
std::vector<OperandInfo> InsnOperands;
|
std::vector<OperandInfo> InsnOperands;
|
||||||
|
|
Loading…
Reference in New Issue