From 5eeb4b5bf6c3380fc27f38ab5a59c19550869ba0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 26 Mar 2007 01:45:35 +0000 Subject: [PATCH] Start value symbol tables out small (space for 16 elts), not huge (space for 512). This is particularly useful for the JIT, which lazily deserializes functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35346 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ValueSymbolTable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ValueSymbolTable.h b/include/llvm/ValueSymbolTable.h index 2f3da5df06d..f5dcae0877f 100644 --- a/include/llvm/ValueSymbolTable.h +++ b/include/llvm/ValueSymbolTable.h @@ -61,7 +61,7 @@ public: /// @{ public: - ValueSymbolTable() : LastUnique(0) {} + ValueSymbolTable() : vmap(16), LastUnique(0) {} ~ValueSymbolTable(); /// @}