From: Chris Lattner Date: Sat, 3 Feb 2007 19:30:48 +0000 (+0000) Subject: 8 buckets is way too small to start out with. This was only for testing. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5a5f6b6e38b7155200903816f22501cce4ca36a7;p=oota-llvm.git 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 --- diff --git a/include/llvm/ADT/DenseMap.h b/include/llvm/ADT/DenseMap.h index fa3e2df8947..646ee40c154 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() {