diff options
author | Chris Lattner <sabre@nondot.org> | 2010-06-24 06:46:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-06-24 06:46:50 +0000 |
commit | f8cbde46fb9d6e3c31813cf51a6e05930cf95ef8 (patch) | |
tree | 3cb4064010b8106af09b2306badc53e23d0abc2d /lib/Target/MSP430 | |
parent | 6b13cbca61f2cb00a750a49f844d82c170c6e4c8 (diff) | |
download | external_llvm-f8cbde46fb9d6e3c31813cf51a6e05930cf95ef8.zip external_llvm-f8cbde46fb9d6e3c31813cf51a6e05930cf95ef8.tar.gz external_llvm-f8cbde46fb9d6e3c31813cf51a6e05930cf95ef8.tar.bz2 |
fix breakage from r98938 by correctly marking msp430 calls as variadic.
Patch by Ben Ransford!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSP430')
-rw-r--r-- | lib/Target/MSP430/MSP430InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/MSP430/MSP430InstrInfo.td b/lib/Target/MSP430/MSP430InstrInfo.td index b336337..8792b22 100644 --- a/lib/Target/MSP430/MSP430InstrInfo.td +++ b/lib/Target/MSP430/MSP430InstrInfo.td @@ -49,7 +49,7 @@ def MSP430rla : SDNode<"MSP430ISD::RLA", SDTIntUnaryOp, []>; def MSP430rrc : SDNode<"MSP430ISD::RRC", SDTIntUnaryOp, []>; def MSP430call : SDNode<"MSP430ISD::CALL", SDT_MSP430Call, - [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>; + [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag, SDNPVariadic]>; def MSP430callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_MSP430CallSeqStart, [SDNPHasChain, SDNPOutFlag]>; |