mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-31 07:43:37 +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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35346 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b3b29dfe7a
commit
5eeb4b5bf6
@ -61,7 +61,7 @@ public:
|
||||
/// @{
|
||||
public:
|
||||
|
||||
ValueSymbolTable() : LastUnique(0) {}
|
||||
ValueSymbolTable() : vmap(16), LastUnique(0) {}
|
||||
~ValueSymbolTable();
|
||||
|
||||
/// @}
|
||||
|
Loading…
x
Reference in New Issue
Block a user