llvm-project/clang/test/Lexer/has_feature_memory_sanitizer.cpp
Evgeniy Stepanov a8df444a1c Add __has_feature(memory_sanitizer).
llvm-svn: 170686
2012-12-20 12:03:13 +00:00

12 lines
356 B
C++

// RUN: %clang_cc1 -E -fsanitize=memory %s -o - | FileCheck --check-prefix=CHECK-MSAN %s
// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-MSAN %s
#if __has_feature(memory_sanitizer)
int MemorySanitizerEnabled();
#else
int MemorySanitizerDisabled();
#endif
// CHECK-MSAN: MemorySanitizerEnabled
// CHECK-NO-MSAN: MemorySanitizerDisabled