[compiler-rt] r176255 - [asan] Enable allocator2 on Android.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Thu Feb 28 06:07:01 PST 2013


Author: eugenis
Date: Thu Feb 28 08:07:01 2013
New Revision: 176255

URL: http://llvm.org/viewvc/llvm-project?rev=176255&view=rev
Log:
[asan] Enable allocator2 on Android.

Modified:
    compiler-rt/trunk/lib/asan/asan_allocator.h

Modified: compiler-rt/trunk/lib/asan/asan_allocator.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_allocator.h?rev=176255&r1=176254&r2=176255&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_allocator.h (original)
+++ compiler-rt/trunk/lib/asan/asan_allocator.h Thu Feb 28 08:07:01 2013
@@ -24,7 +24,7 @@
 // will co-exist in the source base for a while. The actual allocator is chosen
 // at build time by redefining this macro.
 #ifndef ASAN_ALLOCATOR_VERSION
-# if (ASAN_LINUX && !ASAN_ANDROID) || ASAN_MAC || ASAN_WINDOWS
+# if ASAN_LINUX || ASAN_MAC || ASAN_WINDOWS
 #  define ASAN_ALLOCATOR_VERSION 2
 # else
 #  define ASAN_ALLOCATOR_VERSION 1





More information about the llvm-commits mailing list