From: Evan Cheng Date: Sat, 3 Feb 2007 09:11:58 +0000 (+0000) Subject: ARM callseq_end should have a input flag operand so it would be scheduled right after... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b38cba928ee64849a950026be5e6162e48d83992;p=oota-llvm.git ARM callseq_end should have a input flag operand so it would be scheduled right after the call. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33832 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index b83cdca6df0..31d923e7337 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -46,7 +46,7 @@ def ARMWrapperJT : SDNode<"ARMISD::WrapperJT", SDTIntBinOp>; def ARMcallseq_start : SDNode<"ISD::CALLSEQ_START", SDT_ARMCallSeq, [SDNPHasChain, SDNPOutFlag]>; def ARMcallseq_end : SDNode<"ISD::CALLSEQ_END", SDT_ARMCallSeq, - [SDNPHasChain, SDNPOutFlag]>; + [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>; def ARMcall : SDNode<"ARMISD::CALL", SDT_ARMcall, [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;