diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-06-10 20:37:36 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-06-10 20:37:36 +0000 |
commit | a50760f43bafbb46f72fc22426075204a69ce178 (patch) | |
tree | 9e19288eefab368687f166593296f0898a9277ac /lib/CodeGen/CallingConvLower.cpp | |
parent | a0f803a2e3a6b2962417cae23e2980535ea39ff9 (diff) |
Rename the ParmContext enum values to make a bit more sense and add a small
comment on their meaning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CallingConvLower.cpp')
-rw-r--r-- | lib/CodeGen/CallingConvLower.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CallingConvLower.cpp b/lib/CodeGen/CallingConvLower.cpp index eb90c049cd..14eb0541dc 100644 --- a/lib/CodeGen/CallingConvLower.cpp +++ b/lib/CodeGen/CallingConvLower.cpp @@ -28,7 +28,7 @@ CCState::CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf, LLVMContext &C) : CallingConv(CC), IsVarArg(isVarArg), MF(mf), TM(tm), TRI(*TM.getRegisterInfo()), Locs(locs), Context(C), - CallOrPrologue(Invalid) { + CallOrPrologue(Unknown) { // No stack is used. StackOffset = 0; |