[compiler-rt] [sanitizer_common][asan] Implement address sanitizer on AIX: interceptors (5/6) (PR #131870)

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 30 23:57:38 PDT 2025


================
@@ -56,6 +56,7 @@ namespace __asan {
 #  define ASAN_READ_STRING(ctx, s, n) \
     ASAN_READ_STRING_OF_LEN((ctx), (s), internal_strlen(s), (n))
 
+#  if SANITIZER_INTERCEPT_STRCAT || SANITIZER_INTERCEPT_STRCPY
----------------
vitalybuka wrote:

convention is to use SANITIZER_INTERCEPT_ to controll sanitizer_common interceptors
for asan, please use ASAN_INTERCEPT_

https://github.com/llvm/llvm-project/pull/131870


More information about the llvm-commits mailing list