Summary: Increase early allocation buffer size.
Reviewers: bruening
Subscribers: kubabrecka
Differential Revision: https://reviews.llvm.org/D25380
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@283598
91177308-0d34-0410-b5e6-
96231b3b80d8
Gbp-Pq: Name esan-Fix-ESan-test-failure-on-Debian-Sid-bot2.diff
// Malloc interceptors
//===----------------------------------------------------------------------===//
-static const uptr early_alloc_buf_size = 1024;
+static const uptr early_alloc_buf_size = 4096;
static uptr allocated_bytes;
static char early_alloc_buf[early_alloc_buf_size];