[clang] 5ea9d3d - [docs][msan] Improve language consistency
via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 30 10:18:00 PDT 2024
Author: Vitaly Buka
Date: 2024-07-30T10:17:57-07:00
New Revision: 5ea9d3d432350b0f63df61026f4eacdd504adee8
URL: https://github.com/llvm/llvm-project/commit/5ea9d3d432350b0f63df61026f4eacdd504adee8
DIFF: https://github.com/llvm/llvm-project/commit/5ea9d3d432350b0f63df61026f4eacdd504adee8.diff
LOG: [docs][msan] Improve language consistency
Added:
Modified:
clang/docs/MemorySanitizer.rst
Removed:
################################################################################
diff --git a/clang/docs/MemorySanitizer.rst b/clang/docs/MemorySanitizer.rst
index 9775080360d49..05e43a32b9b87 100644
--- a/clang/docs/MemorySanitizer.rst
+++ b/clang/docs/MemorySanitizer.rst
@@ -17,7 +17,7 @@ Here is a not comprehensive of list cases when MemorySanitizer will report an er
* Uninitialized value was used in a conditional branch.
* Uninitialized pointer was used for memory accesses.
-* Uninitialized value passed or returned from a function call, which is considered an undefined behavior. The check can be disabled with ``-fno-sanitize-memory-param-retval``.
+* Uninitialized value was passed or returned from a function call, which is considered an undefined behavior. The check can be disabled with ``-fno-sanitize-memory-param-retval``.
* Uninitialized data was passed into some libc calls.
How to build
More information about the cfe-commits
mailing list