From: Alexander Potapenko Date: Thu, 21 Feb 2013 17:12:21 +0000 (+0000) Subject: [ASan] temporarily disable alloc_dealloc_mismatch on Mac, since the previous commit... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97781c4dd0a0d426551a41f0d7249a4040af7bd9;p=platform%2Fupstream%2Fllvm.git [ASan] temporarily disable alloc_dealloc_mismatch on Mac, since the previous commit caused error reports in gTest. llvm-svn: 175766 --- 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.