From: Dmitry Vyukov Date: Sat, 26 Jul 2014 10:06:11 +0000 (+0000) Subject: tsan: remove meta from internal allocator X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07fdaf97e407aea6e8a3972605c03d7ede9cb9d6;p=platform%2Fupstream%2Fllvm.git tsan: remove meta from internal allocator I am puzzled why it is even there. llvm-svn: 214026 --- diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h index c5f9028..bc81933 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h +++ b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h @@ -37,7 +37,7 @@ static const uptr kInternalAllocatorNumRegions = typedef TwoLevelByteMap<(kInternalAllocatorNumRegions >> 12), 1 << 12> ByteMap; #endif typedef SizeClassAllocator32< - kInternalAllocatorSpace, kInternalAllocatorSize, 16, InternalSizeClassMap, + kInternalAllocatorSpace, kInternalAllocatorSize, 0, InternalSizeClassMap, kInternalAllocatorRegionSizeLog, ByteMap> PrimaryInternalAllocator; typedef SizeClassAllocatorLocalCache