[llvm-commits] CVS: llvm/include/llvm/ADT/DenseMap.h
Chris Lattner
sabre at nondot.org
Sat Feb 3 11:31:05 PST 2007
Changes in directory llvm/include/llvm/ADT:
DenseMap.h updated: 1.14 -> 1.15
---
Log message:
8 buckets is way too small to start out with. This was only for testing.
---
Diffs of the changes: (+1 -1)
DenseMap.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/ADT/DenseMap.h
diff -u llvm/include/llvm/ADT/DenseMap.h:1.14 llvm/include/llvm/ADT/DenseMap.h:1.15
--- llvm/include/llvm/ADT/DenseMap.h:1.14 Fri Feb 2 15:19:18 2007
+++ llvm/include/llvm/ADT/DenseMap.h Sat Feb 3 13:30:48 2007
@@ -53,7 +53,7 @@
unsigned NumEntries;
DenseMap(const DenseMap &); // not implemented.
public:
- explicit DenseMap(unsigned NumInitBuckets = 8) {
+ explicit DenseMap(unsigned NumInitBuckets = 64) {
init(NumInitBuckets);
}
~DenseMap() {
More information about the llvm-commits
mailing list