mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-26 13:36:28 +00:00
Change bools to 1-bit bitfields to shrink ArgListEntry slightly.
llvm-svn: 52918
This commit is contained in:
parent
295abfe228
commit
7c7639816b
@ -975,12 +975,12 @@ public:
|
||||
struct ArgListEntry {
|
||||
SDOperand Node;
|
||||
const Type* Ty;
|
||||
bool isSExt;
|
||||
bool isZExt;
|
||||
bool isInReg;
|
||||
bool isSRet;
|
||||
bool isNest;
|
||||
bool isByVal;
|
||||
bool isSExt : 1;
|
||||
bool isZExt : 1;
|
||||
bool isInReg : 1;
|
||||
bool isSRet : 1;
|
||||
bool isNest : 1;
|
||||
bool isByVal : 1;
|
||||
uint16_t Alignment;
|
||||
|
||||
ArgListEntry() : isSExt(false), isZExt(false), isInReg(false),
|
||||
|
Loading…
Reference in New Issue
Block a user