[llvm-commits] [compiler-rt] r172392 - /compiler-rt/trunk/lib/asan/asan_allocator.h
Dmitry Vyukov
dvyukov at google.com
Mon Jan 14 01:03:24 PST 2013
Author: dvyukov
Date: Mon Jan 14 03:03:24 2013
New Revision: 172392
URL: http://llvm.org/viewvc/llvm-project?rev=172392&view=rev
Log:
asan: enable allocator version 1 by default
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=172392&r1=172391&r2=172392&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_allocator.h (original)
+++ compiler-rt/trunk/lib/asan/asan_allocator.h Mon Jan 14 03:03:24 2013
@@ -22,8 +22,8 @@
// We are in the process of transitioning from the old allocator (version 1)
// to a new one (version 2). The change is quite intrusive so both allocators
// will co-exist in the source base for a while. The actual allocator is chosen
-// at build time by redefining this macrozz.
-#define ASAN_ALLOCATOR_VERSION 2
+// at build time by redefining this macro.
+#define ASAN_ALLOCATOR_VERSION 1
namespace __asan {
More information about the llvm-commits
mailing list