summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2012-08-20 08:49:49 +0000
committerAlexander Potapenko <glider@google.com>2012-08-20 08:49:49 +0000
commit5ffb40c5532932d4a20738222a43286cf153de52 (patch)
tree9006e668a2eab6bd8dd601425efec761f2edd6ba /lib
parent55e711ed818d7553d62eba4b3a2fad3e2723f697 (diff)
downloadcompiler-rt-5ffb40c5532932d4a20738222a43286cf153de52.tar.gz
compiler-rt-5ffb40c5532932d4a20738222a43286cf153de52.tar.bz2
compiler-rt-5ffb40c5532932d4a20738222a43286cf153de52.tar.xz
Fix a leftover #if defined(DYNAMIC_MAC_WRAPPERS).
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@162197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/asan/asan_intercepted_functions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/asan_intercepted_functions.h b/lib/asan/asan_intercepted_functions.h
index 87ab88ac..71cc2ccf 100644
--- a/lib/asan/asan_intercepted_functions.h
+++ b/lib/asan/asan_intercepted_functions.h
@@ -59,7 +59,7 @@ using __sanitizer::uptr;
// On Darwin siglongjmp tailcalls longjmp, so we don't want to intercept it
// there.
-#if !defined(_WIN32) && (!defined(__APPLE__) || defined(DYNAMIC_MAC_WRAPPERS))
+#if !defined(_WIN32) && (!defined(__APPLE__) || MAC_INTERPOSE_FUNCTIONS)
# define ASAN_INTERCEPT_SIGLONGJMP 1
#else
# define ASAN_INTERCEPT_SIGLONGJMP 0