forked from OSchip/llvm-project
tsan: remove meta from internal allocator
I am puzzled why it is even there. llvm-svn: 214026
This commit is contained in:
parent
0c455f3fea
commit
07fdaf97e4
|
@ -37,7 +37,7 @@ static const uptr kInternalAllocatorNumRegions =
|
||||||
typedef TwoLevelByteMap<(kInternalAllocatorNumRegions >> 12), 1 << 12> ByteMap;
|
typedef TwoLevelByteMap<(kInternalAllocatorNumRegions >> 12), 1 << 12> ByteMap;
|
||||||
#endif
|
#endif
|
||||||
typedef SizeClassAllocator32<
|
typedef SizeClassAllocator32<
|
||||||
kInternalAllocatorSpace, kInternalAllocatorSize, 16, InternalSizeClassMap,
|
kInternalAllocatorSpace, kInternalAllocatorSize, 0, InternalSizeClassMap,
|
||||||
kInternalAllocatorRegionSizeLog, ByteMap> PrimaryInternalAllocator;
|
kInternalAllocatorRegionSizeLog, ByteMap> PrimaryInternalAllocator;
|
||||||
|
|
||||||
typedef SizeClassAllocatorLocalCache<PrimaryInternalAllocator>
|
typedef SizeClassAllocatorLocalCache<PrimaryInternalAllocator>
|
||||||
|
|
Loading…
Reference in New Issue