From 51b6e07deb2cb4f07206e57f2cbbaed69abf6c73 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 14 Dec 2012 13:46:03 +0000 Subject: [PATCH] tsan: fix lint warning llvm-svn: 170202 --- .../lib/sanitizer_common/tests/sanitizer_allocator_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc index 06ad989ccecf..5668b6df8917 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc @@ -21,7 +21,7 @@ #include // Too slow for debug build -#if TSAN_DEBUG==0 +#if TSAN_DEBUG == 0 #if SANITIZER_WORDSIZE == 64 static const uptr kAllocatorSpace = 0x700000000000ULL;