summaryrefslogtreecommitdiff
path: root/lib/asan/asan_allocator.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2013-01-14 09:03:24 +0000
committerDmitry Vyukov <dvyukov@google.com>2013-01-14 09:03:24 +0000
commit1b2f0306ef6cac2a4c42a80b467a92e9e62b3e5a (patch)
tree63edd3982e678705d02400d9957d2e239bbc3357 /lib/asan/asan_allocator.h
parentd618867d19e4d278e8040e1529f50287c6a4eea5 (diff)
asan: enable allocator version 1 by default
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@172392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/asan_allocator.h')
-rw-r--r--lib/asan/asan_allocator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asan/asan_allocator.h b/lib/asan/asan_allocator.h
index bc0419cf9..6c136edef 100644
--- a/lib/asan/asan_allocator.h
+++ b/lib/asan/asan_allocator.h
@@ -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 {