[compiler-rt] [asan] Add experimental 'track_poison' flag (PR #133175)

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 26 15:50:06 PDT 2025


================
@@ -119,7 +181,7 @@ void __asan_poison_memory_region(void const volatile *addr, uptr size) {
       if (beg.offset > 0) {
         *beg.chunk = Min(value, beg.offset);
       } else {
-        *beg.chunk = kAsanUserPoisonedMemoryMagic;
+        *beg.chunk = poison_magic;
----------------
vitalybuka wrote:

Why can't we use kAsanUserPoisonedMemoryMagic always?

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


More information about the llvm-commits mailing list