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.

llvm-svn: 35346
This commit is contained in:
Chris Lattner 2007-03-26 01:45:35 +00:00
parent e1787d5f46
commit cc91b2a91d

View File

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