aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-05-12 19:57:08 +0000
committerChris Lattner <sabre@nondot.org>2005-05-12 19:57:08 +0000
commitb15a8f5f8c986b1761993792bb5654a2b7abbbfa (patch)
tree79981aee8861eeb7bdc82f2f9ca7860a2b55bfe9
parent9092fa310c8b2b1645b0d448c4c34b1e8ddc131d (diff)
LowerCallTo now takes the cc to use
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21901 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Target/TargetLowering.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 96305c2b6a..0d5637985a 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -262,7 +262,8 @@ public:
typedef std::vector<std::pair<SDOperand, const Type*> > ArgListTy;
virtual std::pair<SDOperand, SDOperand>
LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
- SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG) = 0;
+ unsigned CallingConv, SDOperand Callee, ArgListTy &Args,
+ SelectionDAG &DAG) = 0;
/// LowerVAStart - This lowers the llvm.va_start intrinsic. If not
/// implemented, this method prints a message and aborts.