From 97781c4dd0a0d426551a41f0d7249a4040af7bd9 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Thu, 21 Feb 2013 17:12:21 +0000 Subject: [PATCH] [ASan] temporarily disable alloc_dealloc_mismatch on Mac, since the previous commit caused error reports in gTest. llvm-svn: 175766 --- compiler-rt/lib/asan/asan_rtl.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler-rt/lib/asan/asan_rtl.cc b/compiler-rt/lib/asan/asan_rtl.cc index d42c674..83aa1f4 100644 --- a/compiler-rt/lib/asan/asan_rtl.cc +++ b/compiler-rt/lib/asan/asan_rtl.cc @@ -164,7 +164,9 @@ void InitializeFlags(Flags *f, const char *env) { f->fast_unwind_on_fatal = false; f->fast_unwind_on_malloc = true; f->poison_heap = true; - f->alloc_dealloc_mismatch = true; + // Turn off alloc/dealloc mismatch checker on Mac for now. + // TODO(glider): Fix known issues and enable this back. + f->alloc_dealloc_mismatch = (ASAN_MAC == 0);; f->use_stack_depot = true; // Only affects allocator2. // Override from compile definition. -- 2.7.4