[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp 
    Chris Lattner 
    lattner at cs.uiuc.edu
       
    Thu May 12 12:57:00 PDT 2005
    
    
  
Changes in directory llvm/lib/Target/Alpha:
AlphaISelPattern.cpp updated: 1.109 -> 1.110
---
Log message:
Pass in Calling Convention to use into LowerCallTo
---
Diffs of the changes:  (+2 -1)
 AlphaISelPattern.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.109 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.110
--- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.109	Wed May  4 14:25:37 2005
+++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp	Thu May 12 14:56:42 2005
@@ -118,7 +118,7 @@
     /// 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 @@
 std::pair<SDOperand, SDOperand>
 AlphaTargetLowering::LowerCallTo(SDOperand Chain,
                                  const Type *RetTy, bool isVarArg,
+                                 unsigned CallingConv,
                                  SDOperand Callee, ArgListTy &Args, 
                                  SelectionDAG &DAG) {
   int NumBytes = 0;
    
    
More information about the llvm-commits
mailing list