mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
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:
@@ -38,9 +38,9 @@ template<typename KeyT, typename ValueT,
|
|||||||
typename KeyInfoT = DenseMapInfo<KeyT> >
|
typename KeyInfoT = DenseMapInfo<KeyT> >
|
||||||
class DenseMap {
|
class DenseMap {
|
||||||
typedef std::pair<KeyT, ValueT> BucketT;
|
typedef std::pair<KeyT, ValueT> BucketT;
|
||||||
unsigned NumBuckets;
|
|
||||||
BucketT *Buckets;
|
BucketT *Buckets;
|
||||||
|
|
||||||
|
unsigned NumBuckets;
|
||||||
unsigned NumEntries;
|
unsigned NumEntries;
|
||||||
unsigned NumTombstones;
|
unsigned NumTombstones;
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user