Change bools to 1-bit bitfields to shrink ArgListEntry slightly.

llvm-svn: 52918
This commit is contained in:
Dan Gohman 2008-06-30 20:33:57 +00:00
parent 295abfe228
commit 7c7639816b

View File

@ -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),