mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +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:
parent
8782707f50
commit
14d81c416c
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user