23 lines
468 B
C++
23 lines
468 B
C++
// RUN: %clangxx_asan -O2 %s -o %t
|
|
// RUN: %run %t 2>&1 | FileCheck %s
|
|
|
|
// FIXME: Doesn't work with DLLs
|
|
// XFAIL: win32-dynamic-asan
|
|
|
|
const char *kAsanDefaultOptions = "verbosity=1 help=1";
|
|
|
|
// Required for dyld macOS 12.0+
|
|
#if (__APPLE__)
|
|
__attribute__((weak))
|
|
#endif
|
|
__attribute__((no_sanitize_address))
|
|
extern "C" const char *
|
|
__asan_default_options() {
|
|
// CHECK: Available flags for AddressSanitizer:
|
|
return kAsanDefaultOptions;
|
|
}
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|