mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-11 14:16:59 +00:00
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:
parent
e1787d5f46
commit
cc91b2a91d
@ -61,7 +61,7 @@ public:
|
||||
/// @{
|
||||
public:
|
||||
|
||||
ValueSymbolTable() : LastUnique(0) {}
|
||||
ValueSymbolTable() : vmap(16), LastUnique(0) {}
|
||||
~ValueSymbolTable();
|
||||
|
||||
/// @}
|
||||
|
Loading…
x
Reference in New Issue
Block a user