diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-28 08:47:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-28 08:47:39 +0000 |
commit | 263bd9abe283caf7461cf77c494d441679351be1 (patch) | |
tree | 3c1e95b83d307b380f9eb9956cd28277e9b6bd3a | |
parent | caa8870fe09f5526e611434b6bb9f7040c7dfa60 (diff) |
fix a type contradition: XCoreISD::RETSP has one argument, not zero.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99760 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/XCore/XCoreInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/XCore/XCoreInstrInfo.td b/lib/Target/XCore/XCoreInstrInfo.td index 2e9a1e5d6e..dd3cbc1699 100644 --- a/lib/Target/XCore/XCoreInstrInfo.td +++ b/lib/Target/XCore/XCoreInstrInfo.td @@ -32,7 +32,7 @@ def XCoreBranchLink : SDNode<"XCoreISD::BL",SDT_XCoreBranchLink, [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag, SDNPVariadic]>; -def XCoreRetsp : SDNode<"XCoreISD::RETSP", SDTNone, +def XCoreRetsp : SDNode<"XCoreISD::RETSP", SDTBrind, [SDNPHasChain, SDNPOptInFlag]>; def SDT_XCoreBR_JT : SDTypeProfile<0, 2, |