[llvm-commits] [compiler-rt] r163291 - /compiler-rt/trunk/lib/asan/asan_rtl.cc

Kostya Serebryany kcc at google.com
Wed Sep 5 21:46:47 PDT 2012


Author: kcc
Date: Wed Sep  5 23:46:47 2012
New Revision: 163291

URL: http://llvm.org/viewvc/llvm-project?rev=163291&view=rev
Log:
[asan] increase the maximal size of malloc/free stack

Modified:
    compiler-rt/trunk/lib/asan/asan_rtl.cc

Modified: compiler-rt/trunk/lib/asan/asan_rtl.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_rtl.cc?rev=163291&r1=163290&r2=163291&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_rtl.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_rtl.cc Wed Sep  5 23:46:47 2012
@@ -62,7 +62,7 @@
 namespace __asan {
 
 // -------------------------- Flags ------------------------- {{{1
-static const int kMallocContextSize = 30;
+static const int kMallocContextSize = 64;
 
 static Flags asan_flags;
 





More information about the llvm-commits mailing list