Rename a field so there's less confusion between fields of the same name.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34049 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-02-08 09:08:23 +00:00
parent ac6d60899d
commit 2dcb5834c0

View File

@ -216,7 +216,8 @@ enum CastOps {
// An enumeration for the old calling conventions, ala LLVM 1.9
namespace OldCallingConv {
enum ID {
C = 0, CSRet = 1, Fast = 8, Cold = 9, X86_StdCall = 64, X86_FastCall = 65
C = 0, CSRet = 1, Fast = 8, Cold = 9, X86_StdCall = 64, X86_FastCall = 65,
None = 99999
};
}
@ -234,7 +235,7 @@ struct TypeInfo {
};
struct PATypeInfo {
llvm::PATypeHolder* T;
llvm::PATypeHolder* PAT;
Signedness S;
};