Index: lib/sanitizer_common/sanitizer_unwind_posix_libcdep.cc =================================================================== --- lib/sanitizer_common/sanitizer_unwind_posix_libcdep.cc +++ lib/sanitizer_common/sanitizer_unwind_posix_libcdep.cc @@ -82,7 +82,7 @@ #endif uptr Unwind_GetIP(struct _Unwind_Context *ctx) { -#ifdef __arm__ +#if defined(__arm__) && !defined(__APPLE__) uptr val; _Unwind_VRS_Result res = _Unwind_VRS_Get(ctx, _UVRSC_CORE, 15 /* r15 = PC */, _UVRSD_UINT32, &val);