diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-02-02 21:29:10 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-02-02 21:29:10 +0000 |
commit | 942619695f4bd77934c09a1cae0fb39ae59edac3 (patch) | |
tree | eb971fa329023daf285f142fe0d7e5805b1424e5 /lib/Target/SystemZ | |
parent | 00f488012c6c44bc6ee35a3078a0063e10f152e3 (diff) | |
download | external_llvm-942619695f4bd77934c09a1cae0fb39ae59edac3.zip external_llvm-942619695f4bd77934c09a1cae0fb39ae59edac3.tar.gz external_llvm-942619695f4bd77934c09a1cae0fb39ae59edac3.tar.bz2 |
Pass callsite return type to TargetLowering::LowerCall and use that to check sibcall eligibility.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ')
-rw-r--r-- | lib/Target/SystemZ/SystemZISelLowering.cpp | 1 | ||||
-rw-r--r-- | lib/Target/SystemZ/SystemZISelLowering.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZISelLowering.cpp b/lib/Target/SystemZ/SystemZISelLowering.cpp index f7405a5..8146666 100644 --- a/lib/Target/SystemZ/SystemZISelLowering.cpp +++ b/lib/Target/SystemZ/SystemZISelLowering.cpp @@ -249,6 +249,7 @@ SystemZTargetLowering::LowerFormalArguments(SDValue Chain, SDValue SystemZTargetLowering::LowerCall(SDValue Chain, SDValue Callee, + const Type *RetTy, CallingConv::ID CallConv, bool isVarArg, bool &isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, diff --git a/lib/Target/SystemZ/SystemZISelLowering.h b/lib/Target/SystemZ/SystemZISelLowering.h index 36ff994..ee06957 100644 --- a/lib/Target/SystemZ/SystemZISelLowering.h +++ b/lib/Target/SystemZ/SystemZISelLowering.h @@ -124,7 +124,7 @@ namespace llvm { DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals); virtual SDValue - LowerCall(SDValue Chain, SDValue Callee, + LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy, CallingConv::ID CallConv, bool isVarArg, bool &isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<ISD::InputArg> &Ins, |