mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
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:
parent
ac6d60899d
commit
2dcb5834c0
@ -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;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user