[PATCH] D27873: Reduce the size of quarantine cache in ASAN_LOW_MEMORY configuration.
Aleksey Shlyapnikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 20 15:29:27 PST 2016
alekseyshl marked an inline comment as done.
alekseyshl added inline comments.
================
Comment at: lib/asan/asan_allocator.cc:235
+ // quarantine is set to 64Kb.
+ (ASAN_LOW_MEMORY) ? 64 << 10 : FIRST_32_SECOND_64(1 << 18, 1 << 20);
----------------
eugenis wrote:
> 1 << 16
Sure, but doesn't it make it a bit less cryptic using 64 and Kb (1 << 10) than 1 << 16?
https://reviews.llvm.org/D27873
More information about the llvm-commits
mailing list