blob: 0a248100c876f5e94659f7cfae4a4b987bfd6808 [file] [log] [blame]
Dmitry Vyukov728e2122012-12-17 08:52:05 +00001// RUN: %clang_cc1 -E -fsanitize=thread %s -o - | FileCheck --check-prefix=CHECK-TSAN %s
2// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-TSAN %s
3
4#if __has_feature(thread_sanitizer)
5int ThreadSanitizerEnabled();
6#else
7int ThreadSanitizerDisabled();
8#endif
9
10// CHECK-TSAN: ThreadSanitizerEnabled
11// CHECK-NO-TSAN: ThreadSanitizerDisabled