projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f952135
)
add isVarArg to CCState
author
Chris Lattner
<sabre@nondot.org>
Tue, 19 Jun 2007 00:11:09 +0000
(
00:11
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 19 Jun 2007 00:11:09 +0000
(
00:11
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37640
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/CallingConvLower.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
b/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
index 08a6ade62480cbd2746b077fa38c5c600d7eb675..defbe3416e712855e476b0b0eb514635d4d4df25 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/CallingConvLower.cpp
+++ b/
lib/CodeGen/SelectionDAG/CallingConvLower.cpp
@@
-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;