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
This commit is contained in:
Cameron Zwarich
2011-06-10 20:37:36 +00:00
parent a0f803a2e3
commit a50760f43b
2 changed files with 5 additions and 2 deletions

View File

@ -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;