forked from OSchip/llvm-project
asan: fix the constant for new allocator cache
llvm-svn: 172526
This commit is contained in:
parent
3f32c1e860
commit
0d46b2b95e
|
@ -112,7 +112,7 @@ struct AsanThreadLocalMallocStorage {
|
|||
AsanChunk *free_lists_[kNumberOfSizeClasses];
|
||||
#else
|
||||
uptr quarantine_cache[16];
|
||||
uptr allocator2_cache[1024]; // Opaque.
|
||||
uptr allocator2_cache[96 * (512 * 8 + 16)]; // Opaque.
|
||||
#endif
|
||||
void CommitBack();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue