summaryrefslogtreecommitdiff
path: root/compiler-rt/include
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-09-14 22:31:34 +0000
committerEric Fiselier <eric@efcs.ca>2017-09-14 22:31:34 +0000
commite77d7e1d7a1dc86b214a572e6b40e71ad92b84a1 (patch)
treebfc136490f6a6a9d4e8a1f9be0d7377c5c2ab152 /compiler-rt/include
parent14585a1701eb94e62de5875917ebbe2980d4c861 (diff)
[ASAN] Revert r313303 - Add macro denoting availability of new `__asan_handle_no_return()` function.
It was pointed out that compiler-rt has always defined the symbol, but only recently added it to the public headers. Meaning that libc++abi can re-declare it instead of needing this macro.
Diffstat (limited to 'compiler-rt/include')
-rw-r--r--compiler-rt/include/sanitizer/asan_interface.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler-rt/include/sanitizer/asan_interface.h b/compiler-rt/include/sanitizer/asan_interface.h
index 8828392b649..e689a730e2c 100644
--- a/compiler-rt/include/sanitizer/asan_interface.h
+++ b/compiler-rt/include/sanitizer/asan_interface.h
@@ -148,10 +148,6 @@ extern "C" {
// before things like _exit and execl to avoid false positives on stack.
void __asan_handle_no_return(void);
- // Required to allow ASAN versions of libc++abi to build against older
- // versions of compiler-rt that do not provide this interface.
-# define SANITIZER_ASAN_INTERFACE_HAS_HANDLE_NO_RETURN
-
#ifdef __cplusplus
} // extern "C"
#endif