[compiler-rt] r193615 - [asan] increase the max malloc size from 8Gb to 64Gb
Kostya Serebryany
kcc at google.com
Tue Oct 29 08:16:54 PDT 2013
Author: kcc
Date: Tue Oct 29 10:16:54 2013
New Revision: 193615
URL: http://llvm.org/viewvc/llvm-project?rev=193615&view=rev
Log:
[asan] increase the max malloc size from 8Gb to 64Gb
Modified:
compiler-rt/trunk/lib/asan/asan_allocator2.cc
Modified: compiler-rt/trunk/lib/asan/asan_allocator2.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_allocator2.cc?rev=193615&r1=193614&r2=193615&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_allocator2.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_allocator2.cc Tue Oct 29 10:16:54 2013
@@ -94,7 +94,7 @@ AllocatorCache *GetAllocatorCache(AsanTh
static Allocator allocator;
static const uptr kMaxAllowedMallocSize =
- FIRST_32_SECOND_64(3UL << 30, 8UL << 30);
+ FIRST_32_SECOND_64(3UL << 30, 64UL << 30);
static const uptr kMaxThreadLocalQuarantine =
FIRST_32_SECOND_64(1 << 18, 1 << 20);
More information about the llvm-commits
mailing list