[llvm-commits] [compiler-rt] r171147 - /compiler-rt/trunk/lib/asan/asan_rtl.cc
Kostya Serebryany
kcc at google.com
Thu Dec 27 00:08:05 PST 2012
Author: kcc
Date: Thu Dec 27 02:08:05 2012
New Revision: 171147
URL: http://llvm.org/viewvc/llvm-project?rev=171147&view=rev
Log:
[asan] enable alloc_dealloc_mismatch by default
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=171147&r1=171146&r2=171147&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_rtl.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_rtl.cc Thu Dec 27 02:08:05 2012
@@ -145,7 +145,7 @@
f->fast_unwind_on_fatal = true;
f->fast_unwind_on_malloc = true;
f->poison_heap = true;
- f->alloc_dealloc_mismatch = false;
+ f->alloc_dealloc_mismatch = true;
f->use_stack_depot = true; // Only affects allocator2.
// Override from user-specified string.
More information about the llvm-commits
mailing list