diff options
| author | Kostya Serebryany <kcc@google.com> | 2016-08-24 00:10:25 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2016-08-24 00:10:25 +0000 |
| commit | 865a98d2edb454e77b963ffdd371580aa343b2b6 (patch) | |
| tree | e130dbb582451e4b23d98eb8b384533ac2db72dd | |
| parent | 012d1c07660663737fee20a6a2b898b5f621033c (diff) | |
| download | bcm5719-llvm-865a98d2edb454e77b963ffdd371580aa343b2b6.tar.gz bcm5719-llvm-865a98d2edb454e77b963ffdd371580aa343b2b6.zip | |
[sanitizer] trying to fix the PPC bots
llvm-svn: 279595
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h index 98be000fdc4..82f6699ab75 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h +++ b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h @@ -293,7 +293,7 @@ class SizeClassAllocator64 { // Call mmap for metadata memory with at least this size. static const uptr kMetaMapSize = 1 << 16; // Call mmap for free array memory with at least this size. - static const uptr kFreeArrayMapSize = 1 << 12; + static const uptr kFreeArrayMapSize = 1 << 16; struct RegionInfo { BlockingMutex mutex; |

