llvm-project/clang/test/Lexer/has_feature_memory_sanitize...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
452 B
C++
Raw Normal View History

// RUN: %clang_cc1 -E -fsanitize=memory %s -o - | FileCheck --check-prefix=CHECK-MSAN %s
// RUN: %clang_cc1 -E -fsanitize=kernel-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