From 9651e4bfd587f2312163c8458acbbdca96fb0d9d Mon Sep 17 00:00:00 2001 From: Advenam Tacet Date: Tue, 23 Jan 2024 18:59:27 +0100 Subject: [PATCH] Update comment text. --- llvm/include/llvm/ADT/FunctionExtras.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/FunctionExtras.h b/llvm/include/llvm/ADT/FunctionExtras.h index 808f0cdba52869..c0bc30c7450fe4 100644 --- a/llvm/include/llvm/ADT/FunctionExtras.h +++ b/llvm/include/llvm/ADT/FunctionExtras.h @@ -320,7 +320,7 @@ template class UniqueFunctionBase { #if !defined(NDEBUG) && !LLVM_ADDRESS_SANITIZER_BUILD // In debug builds without ASan, we also scribble across the rest of the - // storage. AddressSanitizer (ASAN) disables scribbling to prevent + // storage. Scribbling under AddressSanitizer (ASan) is disabled to prevent // overwriting poisoned objects (e.g., annotated short strings). memset(RHS.getInlineStorage(), 0xAD, InlineStorageSize); #endif