diff options
Diffstat (limited to 'contrib/compiler-rt/lib/asan/asan_rtems.cc')
-rw-r--r-- | contrib/compiler-rt/lib/asan/asan_rtems.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/compiler-rt/lib/asan/asan_rtems.cc b/contrib/compiler-rt/lib/asan/asan_rtems.cc index a4af940057eb..b48cc6a75d78 100644 --- a/contrib/compiler-rt/lib/asan/asan_rtems.cc +++ b/contrib/compiler-rt/lib/asan/asan_rtems.cc @@ -213,6 +213,12 @@ static void HandleExit() { } } +bool HandleDlopenInit() { + // Not supported on this platform. + static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN, + "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false"); + return false; +} } // namespace __asan // These are declared (in extern "C") by <some_path/sanitizer.h>. |