[llvm-commits] [compiler-rt] r162197 - /compiler-rt/trunk/lib/asan/asan_intercepted_functions.h
Alexander Potapenko
glider at google.com
Mon Aug 20 01:49:49 PDT 2012
Author: glider
Date: Mon Aug 20 03:49:49 2012
New Revision: 162197
URL: http://llvm.org/viewvc/llvm-project?rev=162197&view=rev
Log:
Fix a leftover #if defined(DYNAMIC_MAC_WRAPPERS).
Modified:
compiler-rt/trunk/lib/asan/asan_intercepted_functions.h
Modified: compiler-rt/trunk/lib/asan/asan_intercepted_functions.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_intercepted_functions.h?rev=162197&r1=162196&r2=162197&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_intercepted_functions.h (original)
+++ compiler-rt/trunk/lib/asan/asan_intercepted_functions.h Mon Aug 20 03:49:49 2012
@@ -59,7 +59,7 @@
// 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
More information about the llvm-commits
mailing list