We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4d656a commit dee3070Copy full SHA for dee3070
compiler-rt/lib/lsan/lsan_common.cpp
@@ -121,6 +121,13 @@ static const char kStdSuppressions[] =
121
# if SANITIZER_APPLE
122
// For Darwin and os_log/os_trace: https://reviews.llvm.org/D35173
123
"leak:*_os_trace*\n"
124
+# if SANITIZER_ARM64
125
+ // Apple Aarch64 leaks in dyld on startup.
126
+ // See https://github.com/llvm/llvm-project/issues/115992.
127
+ "leak:*_fetchInitializingClassList*\n"
128
+ // Apple Aarch64 leaks when using thread locals.
129
+ "leak:*dyld4::RuntimeState::_instantiateTLVs*\n"
130
+# endif
131
# endif
132
// TLS leak in some glibc versions, described in
133
// https://sourceware.org/bugzilla/show_bug.cgi?id=12650.
0 commit comments