mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-10 08:40:41 +00:00
Initialize the symbol table to zero explicitly. This ensures that the
symbol table does no allocations for prototypes or other lazily deserialized functions, saving significant space and time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35643 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
794a014809
commit
cb917f7abd
@ -61,7 +61,7 @@ public:
|
||||
/// @{
|
||||
public:
|
||||
|
||||
ValueSymbolTable() : vmap(16), LastUnique(0) {}
|
||||
ValueSymbolTable() : vmap(0), LastUnique(0) {}
|
||||
~ValueSymbolTable();
|
||||
|
||||
/// @}
|
||||
|
Loading…
x
Reference in New Issue
Block a user