mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 05:22:04 +00:00
improve type checking of SDNode operand count. This rejects all cases
where an incorrect number of operands is provided to an sdnode instead of just a few cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99761 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -199,6 +199,9 @@ public:
|
||||
SDNodeInfo(Record *R); // Parse the specified record.
|
||||
|
||||
unsigned getNumResults() const { return NumResults; }
|
||||
|
||||
/// getNumOperands - This is the number of operands required or -1 if
|
||||
/// variadic.
|
||||
int getNumOperands() const { return NumOperands; }
|
||||
Record *getRecord() const { return Def; }
|
||||
const std::string &getEnumName() const { return EnumName; }
|
||||
|
||||
Reference in New Issue
Block a user