Changes in directory llvm/lib/CodeGen/SelectionDAG:

CallingConvLower.cpp updated: 1.4 -> 1.5
---
Log message:

add isVarArg to CCState


---
Diffs of the changes:  (+3 -2)

 CallingConvLower.cpp |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp:1.4 
llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp:1.5
--- llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp:1.4      Wed Feb 28 
01:09:40 2007
+++ llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp  Mon Jun 18 19:11:09 2007
@@ -18,9 +18,10 @@
 #include "llvm/Target/TargetMachine.h"
 using namespace llvm;
 
-CCState::CCState(unsigned CC, const TargetMachine &tm,
+CCState::CCState(unsigned CC, bool isVarArg, const TargetMachine &tm,
                  SmallVector<CCValAssign, 16> &locs)
-  : CallingConv(CC), TM(tm), MRI(*TM.getRegisterInfo()), Locs(locs) {
+  : CallingConv(CC), IsVarArg(isVarArg), TM(tm),
+    MRI(*TM.getRegisterInfo()), Locs(locs) {
   // No stack is used.
   StackOffset = 0;
   



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to