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
This commit is contained in:
Chris Lattner 2007-03-26 01:45:35 +00:00
parent b3b29dfe7a
commit 5eeb4b5bf6

View File

@ -61,7 +61,7 @@ public:
/// @{
public:
ValueSymbolTable() : LastUnique(0) {}
ValueSymbolTable() : vmap(16), LastUnique(0) {}
~ValueSymbolTable();
/// @}