diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-18 20:50:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-18 20:50:52 +0000 |
commit | cedef1ccf0d53693b5e62d524e7ba6b2122231c7 (patch) | |
tree | 7b4c0dce19fe94750f13def23b681c1f61e84a2e /utils/TableGen/CodeGenInstruction.h | |
parent | 34b8a8857c89ca4d8e6996a1726f5643c0b0cf56 (diff) |
remove some code that was working around old sparc v9 backend bugs.
Add checking that the input/output operand list in spelled right.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenInstruction.h')
-rw-r--r-- | utils/TableGen/CodeGenInstruction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h index aae2cac86a..8e7051bcda 100644 --- a/utils/TableGen/CodeGenInstruction.h +++ b/utils/TableGen/CodeGenInstruction.h @@ -105,7 +105,8 @@ namespace llvm { MINumOperands(MINO), MIOperandInfo(MIOI) {} }; - /// NumDefs - Number of def operands declared. + /// NumDefs - Number of def operands declared, this is the number of + /// elements in the instruction's (outs) list. /// unsigned NumDefs; |