diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-03 19:30:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-03 19:30:48 +0000 |
commit | 5a5f6b6e38b7155200903816f22501cce4ca36a7 (patch) | |
tree | 5861a6e0bccec2819c1c7d43061f086135c06ea6 | |
parent | c74913cd69021ba89c9195bd70e47623d373d646 (diff) |
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
-rw-r--r-- | include/llvm/ADT/DenseMap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/DenseMap.h b/include/llvm/ADT/DenseMap.h index fa3e2df894..646ee40c15 100644 --- a/include/llvm/ADT/DenseMap.h +++ b/include/llvm/ADT/DenseMap.h @@ -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() { |