
Add a 'leak_sanitizer' feature akin to existing '*_sanitizer' features to let programmers switch code paths accounting for leak sanitizers being enabled. Differential Revision: https://reviews.llvm.org/D67719 llvm-svn: 372527
12 lines
343 B
C++
12 lines
343 B
C++
// RUN: %clang_cc1 -E -fsanitize=leak %s -o - | FileCheck --check-prefix=CHECK-LSAN %s
|
|
// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-LSAN %s
|
|
|
|
#if __has_feature(leak_sanitizer)
|
|
int LeakSanitizerEnabled();
|
|
#else
|
|
int LeakSanitizerDisabled();
|
|
#endif
|
|
|
|
// CHECK-LSAN: LeakSanitizerEnabled
|
|
// CHECK-NO-LSAN: LeakSanitizerDisabled
|