diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-12 19:56:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-12 19:56:45 +0000 |
commit | c57f682113c46af22cc593dc15b70aad7aa51eab (patch) | |
tree | 278ead91e8171c6601bc05364c26cf9323000f02 /lib/Target/Alpha/AlphaISelPattern.cpp | |
parent | 664941859886c3337efce455c9df119bc48878a2 (diff) |
Pass in Calling Convention to use into LowerCallTo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaISelPattern.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp index 3fcba64e0d..b5f93b0548 100644 --- a/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/lib/Target/Alpha/AlphaISelPattern.cpp @@ -118,7 +118,7 @@ namespace { /// LowerCallTo - This hook lowers an abstract call to a function into an /// actual call. virtual std::pair<SDOperand, SDOperand> - LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, + LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC, SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG); virtual std::pair<SDOperand, SDOperand> @@ -304,6 +304,7 @@ AlphaTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) std::pair<SDOperand, SDOperand> AlphaTargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, + unsigned CallingConv, SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG) { int NumBytes = 0; |