mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-23 22:52:48 +00:00
8 buckets is way too small to start out with. This was only for testing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33835 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c74913cd69
commit
5a5f6b6e38
@ -53,7 +53,7 @@ class DenseMap {
|
||||
unsigned NumEntries;
|
||||
DenseMap(const DenseMap &); // not implemented.
|
||||
public:
|
||||
explicit DenseMap(unsigned NumInitBuckets = 8) {
|
||||
explicit DenseMap(unsigned NumInitBuckets = 64) {
|
||||
init(NumInitBuckets);
|
||||
}
|
||||
~DenseMap() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user