1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

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

llvm-svn: 34049
This commit is contained in:
Reid Spencer 2007-02-08 09:08:23 +00:00
parent 2306ba13ca
commit 3eeb7956ca

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