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

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 10 10:55:42 PDT 2025


================
@@ -623,6 +659,9 @@ void ErrorGeneric::Print() {
     PrintContainerOverflowHint();
   ReportErrorSummary(bug_descr, &stack);
   PrintShadowMemoryForAddress(addr);
+
+  // This is an experimental flag, hence we don't make a special handler.
+  CheckPoisonRecords(addr);
----------------
vitalybuka wrote:

Should should this be: `CheckPoisonRecords(addr, access_size);`

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


More information about the llvm-commits mailing list