mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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…
Reference in New Issue
Block a user