summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-02-03 09:11:58 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-02-03 09:11:58 +0000
commitb38cba928ee64849a950026be5e6162e48d83992 (patch)
treead1d33db1e21082bb5ccb8e21311e462590385cc /lib
parentfc4034259f8424364d8622f579335c421c9615bd (diff)
downloadllvm-b38cba928ee64849a950026be5e6162e48d83992.tar.gz
llvm-b38cba928ee64849a950026be5e6162e48d83992.tar.bz2
llvm-b38cba928ee64849a950026be5e6162e48d83992.tar.xz
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
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMInstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td
index b83cdca6df..31d923e733 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]>;