aboutsummaryrefslogtreecommitdiff
path: root/clang/docs/MemorySanitizer.rst
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2015-10-19 01:24:08 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2015-10-19 01:24:08 +0000
commit7f66d75832479ec7ee6b4903a95b9fb66289f543 (patch)
treeb70296d6725d1d6e04f6362bb660ce9ceb70177e /clang/docs/MemorySanitizer.rst
parenta8bf774b96bc1ed93f0ca8514c061ee0f15bfac6 (diff)
downloadllvm-7f66d75832479ec7ee6b4903a95b9fb66289f543.zip
llvm-7f66d75832479ec7ee6b4903a95b9fb66289f543.tar.gz
llvm-7f66d75832479ec7ee6b4903a95b9fb66289f543.tar.bz2
docs: remote stale refs
Since the attribute documentation is now auto-generated, the previous references are no longer valid. This prevented the docs build from completing successfully. llvm-svn: 250674
Diffstat (limited to 'clang/docs/MemorySanitizer.rst')
-rw-r--r--clang/docs/MemorySanitizer.rst13
1 files changed, 5 insertions, 8 deletions
diff --git a/clang/docs/MemorySanitizer.rst b/clang/docs/MemorySanitizer.rst
index 007e086..f97355f 100644
--- a/clang/docs/MemorySanitizer.rst
+++ b/clang/docs/MemorySanitizer.rst
@@ -80,14 +80,11 @@ whether MemorySanitizer is enabled. :ref:`\_\_has\_feature
``__attribute__((no_sanitize_memory))``
-----------------------------------------------
-Some code should not be checked by MemorySanitizer.
-One may use the function attribute
-:ref:`no_sanitize_memory <langext-memory_sanitizer>`
-to disable uninitialized checks in a particular function.
-MemorySanitizer may still instrument such functions to avoid false positives.
-This attribute may not be
-supported by other compilers, so we suggest to use it together with
-``__has_feature(memory_sanitizer)``.
+Some code should not be checked by MemorySanitizer. One may use the function
+attribute `no_sanitize_memory` to disable uninitialized checks in a particular
+function. MemorySanitizer may still instrument such functions to avoid false
+positives. This attribute may not be supported by other compilers, so we
+suggest to use it together with ``__has_feature(memory_sanitizer)``.
Blacklist
---------