diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-08-15 13:57:11 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-08-15 13:57:11 +0000 |
commit | fd75a2ca37e1c7f6b3ba31367d61d3441587f91d (patch) | |
tree | 2b3e07d44452c206f62d504b08326ec5cad086bb | |
parent | b95ee69163995c53b47f4c5b12c0af10b5f5b127 (diff) | |
download | bcm5719-llvm-fd75a2ca37e1c7f6b3ba31367d61d3441587f91d.tar.gz bcm5719-llvm-fd75a2ca37e1c7f6b3ba31367d61d3441587f91d.zip |
Update sanitizer attribute documentation to match behaviour change in r187967.
llvm-svn: 188459
-rw-r--r-- | clang/docs/AddressSanitizer.rst | 3 | ||||
-rw-r--r-- | clang/docs/MemorySanitizer.rst | 3 | ||||
-rw-r--r-- | clang/docs/ThreadSanitizer.rst | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/clang/docs/AddressSanitizer.rst b/clang/docs/AddressSanitizer.rst index ec97136b097..4d5944d372a 100644 --- a/clang/docs/AddressSanitizer.rst +++ b/clang/docs/AddressSanitizer.rst @@ -114,8 +114,7 @@ function attribute (or a deprecated synonym `no_address_safety_analysis`) to disable instrumentation of a particular function. This attribute may not be supported by other compilers, so we suggest to use it together with -``__has_feature(address_sanitizer)``. Note: currently, this attribute will be -lost if the function is inlined. +``__has_feature(address_sanitizer)``. Initialization order checking ----------------------------- diff --git a/clang/docs/MemorySanitizer.rst b/clang/docs/MemorySanitizer.rst index 6039addad64..5fc7e745d19 100644 --- a/clang/docs/MemorySanitizer.rst +++ b/clang/docs/MemorySanitizer.rst @@ -90,8 +90,7 @@ 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)``. Note: currently, this attribute will be -lost if the function is inlined. +``__has_feature(memory_sanitizer)``. Blacklist --------- diff --git a/clang/docs/ThreadSanitizer.rst b/clang/docs/ThreadSanitizer.rst index cfe52526bcd..f543333a0c5 100644 --- a/clang/docs/ThreadSanitizer.rst +++ b/clang/docs/ThreadSanitizer.rst @@ -94,8 +94,7 @@ to disable instrumentation of plain (non-atomic) loads/stores in a particular fu ThreadSanitizer 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(thread_sanitizer)``. Note: currently, this attribute will be -lost if the function is inlined. +``__has_feature(thread_sanitizer)``. Blacklist --------- |