diff options
author | Kostya Serebryany <kcc@google.com> | 2013-02-11 08:13:54 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2013-02-11 08:13:54 +0000 |
commit | ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3 (patch) | |
tree | 35b53df2aaa398d54deefbc9ff458c3ca93ebb10 /docs | |
parent | f64c889cc94417322b0ff8ad1c61939183bf3c38 (diff) | |
download | external_llvm-ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3.zip external_llvm-ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3.tar.gz external_llvm-ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3.tar.bz2 |
[tsan/msan] adding thread_safety and uninitialized_checks attributes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/LangRef.rst b/docs/LangRef.rst index d702cfb..f8e22c8 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -909,6 +909,12 @@ example: If a function that has an ``sspstrong`` attribute is inlined into a function that doesn't have an ``sspstrong`` attribute, then the resulting function will have an ``sspstrong`` attribute. +``thread_safety`` + This attribute indicates that the thread safety analysis is enabled + for this function. +``uninitialized_checks`` + This attribute indicates that the checks for uses of uninitialized + memory are enabled. ``uwtable`` This attribute indicates that the ABI being targeted requires that an unwind table entry be produce for this function even if we can |