[libunwind] [libunwind] Fix running tests with MSan (PR #67860)

Fangrui Song via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 18 00:07:53 PDT 2023


================
@@ -43,6 +43,12 @@
   #define LIBUNWIND_AVAIL
 #endif
 
+#if defined(__SANITIZE_MEMORY__) ||                                            \
----------------
MaskRay wrote:

`__SANITIZE_MEMORY__` is a macro defined by the Linux kernel and copied to other projects.

We can drop it.

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


More information about the cfe-commits mailing list