[tsan] Fix a typo in tsan_test_util.h

There is a typo in tsan_test_util.h, it shouldn't be `APPLE`, but `__APPLE__`.

Differential Revision: http://reviews.llvm.org/D14647

llvm-svn: 253078
This commit is contained in:
Kuba Brecka 2015-11-13 20:42:57 +00:00
parent 52d02ab9d9
commit d07e069d79
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Mutex {
enum Type {
Normal,
RW,
#ifndef APPLE
#ifndef __APPLE__
Spin
#else
Spin = Normal