bolt/deps/llvm-18.1.8/compiler-rt/test/lsan/TestCases/default_options.cpp

12 lines
247 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clangxx_lsan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
extern "C"
const char *__lsan_default_options() {
// CHECK: Available flags for {{Leak|Address|HWAddress}}Sanitizer:
return "verbosity=1 help=1";
}
int main() {
return 0;
}