From fbebf0f6de3f45ed562e8d5a898c8767a7e26bc4 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Fri, 19 Aug 2022 21:16:02 -0700 Subject: [PATCH] [msan] Bump max allocation on aarch64 --- compiler-rt/lib/msan/msan_allocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/msan/msan_allocator.cpp b/compiler-rt/lib/msan/msan_allocator.cpp index 0d5e853..051a9cb 100644 --- a/compiler-rt/lib/msan/msan_allocator.cpp +++ b/compiler-rt/lib/msan/msan_allocator.cpp @@ -108,7 +108,7 @@ struct AP64 { // Allocator64 parameters. Deliberately using a short name. typedef SizeClassAllocator64 PrimaryAllocator; #elif defined(__aarch64__) -static const uptr kMaxAllowedMallocSize = 2UL << 30; // 2G +static const uptr kMaxAllowedMallocSize = 8UL << 30; struct AP32 { static const uptr kSpaceBeg = 0; -- 2.7.4