diff options
| author | Kostya Serebryany <kcc@google.com> | 2012-09-06 04:46:47 +0000 | 
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2012-09-06 04:46:47 +0000 | 
| commit | ae350f66d42b563d05a0509a459df8cf3016a59c (patch) | |
| tree | eef3c839a33c0603d483fceae21251d647fd4b9a | |
| parent | 2c1b00a991db9961b48281d61ab6ea20caaa3911 (diff) | |
| download | bcm5719-llvm-ae350f66d42b563d05a0509a459df8cf3016a59c.tar.gz bcm5719-llvm-ae350f66d42b563d05a0509a459df8cf3016a59c.zip | |
[asan] increase the maximal size of malloc/free stack
llvm-svn: 163291
| -rw-r--r-- | compiler-rt/lib/asan/asan_rtl.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler-rt/lib/asan/asan_rtl.cc b/compiler-rt/lib/asan/asan_rtl.cc index d2a51df549c..af5fbfecc2c 100644 --- a/compiler-rt/lib/asan/asan_rtl.cc +++ b/compiler-rt/lib/asan/asan_rtl.cc @@ -62,7 +62,7 @@ void CheckFailed(const char *file, int line, const char *cond, u64 v1, u64 v2) {  namespace __asan {  // -------------------------- Flags ------------------------- {{{1 -static const int kMallocContextSize = 30; +static const int kMallocContextSize = 64;  static Flags asan_flags; | 

