From: Chandler Carruth Date: Wed, 13 Jun 2012 21:44:07 +0000 (+0000) Subject: Group the 'unsigned' members after the pointer to avoid 4 bytes of X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=14d81c416c72dc779dd31a81f68ebd6a6456f6f0;p=oota-llvm.git 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 --- diff --git a/include/llvm/ADT/DenseMap.h b/include/llvm/ADT/DenseMap.h index 07a17535fc9..17131a21400 100644 --- a/include/llvm/ADT/DenseMap.h +++ b/include/llvm/ADT/DenseMap.h @@ -38,9 +38,9 @@ template > class DenseMap { typedef std::pair BucketT; - unsigned NumBuckets; BucketT *Buckets; + unsigned NumBuckets; unsigned NumEntries; unsigned NumTombstones; public: