From 5ebc3dbc1c11c4c626c7aca9d545dc624c08bd1a Mon Sep 17 00:00:00 2001 From: Nate Begeman Date: Sat, 26 Mar 2005 01:30:30 +0000 Subject: [PATCH] Change LowerCallTo to take a boolean isVarArg argument. This is needed by the PowerPC backend, and probably others in the future. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20843 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetLowering.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index e462938cc59..15a5cb9ad57 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -234,10 +234,9 @@ public: /// element is the outgoing token chain. typedef std::vector > ArgListTy; virtual std::pair - LowerCallTo(SDOperand Chain, const Type *RetTy, SDOperand Callee, - ArgListTy &Args, SelectionDAG &DAG) = 0; + LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, + 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. virtual std::pair