Group the 'unsigned' members after the pointer to avoid 4 bytes of

padding on x86-64.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2012-06-13 21:44:07 +00:00
parent 8782707f50
commit 14d81c416c

View File

@ -38,9 +38,9 @@ template<typename KeyT, typename ValueT,
typename KeyInfoT = DenseMapInfo<KeyT> >
class DenseMap {
typedef std::pair<KeyT, ValueT> BucketT;
unsigned NumBuckets;
BucketT *Buckets;
unsigned NumBuckets;
unsigned NumEntries;
unsigned NumTombstones;
public: