r188459 - Update sanitizer attribute documentation to match behaviour change in r187967.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Thu Aug 15 06:57:11 PDT 2013


Author: eugenis
Date: Thu Aug 15 08:57:11 2013
New Revision: 188459

URL: http://llvm.org/viewvc/llvm-project?rev=188459&view=rev
Log:
Update sanitizer attribute documentation to match behaviour change in r187967.

Modified:
    cfe/trunk/docs/AddressSanitizer.rst
    cfe/trunk/docs/MemorySanitizer.rst
    cfe/trunk/docs/ThreadSanitizer.rst

Modified: cfe/trunk/docs/AddressSanitizer.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/AddressSanitizer.rst?rev=188459&r1=188458&r2=188459&view=diff
==============================================================================
--- cfe/trunk/docs/AddressSanitizer.rst (original)
+++ cfe/trunk/docs/AddressSanitizer.rst Thu Aug 15 08:57:11 2013
@@ -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
 -----------------------------

Modified: cfe/trunk/docs/MemorySanitizer.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/MemorySanitizer.rst?rev=188459&r1=188458&r2=188459&view=diff
==============================================================================
--- cfe/trunk/docs/MemorySanitizer.rst (original)
+++ cfe/trunk/docs/MemorySanitizer.rst Thu Aug 15 08:57:11 2013
@@ -90,8 +90,7 @@ to disable uninitialized checks in a par
 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
 ---------

Modified: cfe/trunk/docs/ThreadSanitizer.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ThreadSanitizer.rst?rev=188459&r1=188458&r2=188459&view=diff
==============================================================================
--- cfe/trunk/docs/ThreadSanitizer.rst (original)
+++ cfe/trunk/docs/ThreadSanitizer.rst Thu Aug 15 08:57:11 2013
@@ -94,8 +94,7 @@ to disable instrumentation of plain (non
 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
 ---------





More information about the cfe-commits mailing list