mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Ignore isCodeGenOnly instructions when generating diassembly tables.
llvm-svn: 127619
This commit is contained in:
parent
29a9539e7f
commit
49965661d5
@ -1224,7 +1224,8 @@ bool FixedLenDecoderEmitter::populateInstruction(const CodeGenInstruction &CGI,
|
||||
if (Bits.allInComplete()) return false;
|
||||
|
||||
// Ignore "asm parser only" instructions.
|
||||
if (Def.getValueAsBit("isAsmParserOnly"))
|
||||
if (Def.getValueAsBit("isAsmParserOnly") ||
|
||||
Def.getValueAsBit("isCodeGenOnly"))
|
||||
return false;
|
||||
|
||||
std::vector<OperandInfo> InsnOperands;
|
||||
|
Loading…
x
Reference in New Issue
Block a user