LowerCallTo now takes the cc to use
authorChris Lattner <sabre@nondot.org>
Thu, 12 May 2005 19:57:08 +0000 (19:57 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 12 May 2005 19:57:08 +0000 (19:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21901 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetLowering.h

index 96305c2b6a290d6dc1b4ad1aa8149d1f662a1cf1..0d5637985aaec50da3d0b3048337742f19c766e1 100644 (file)
@@ -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.