summaryrefslogtreecommitdiff
path: root/test/Bitcode
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2013-02-11 08:13:54 +0000
committerKostya Serebryany <kcc@google.com>2013-02-11 08:13:54 +0000
commitab39afa9d9b99c61842c8e3d0eb706bd16efdcf3 (patch)
tree35b53df2aaa398d54deefbc9ff458c3ca93ebb10 /test/Bitcode
parentf64c889cc94417322b0ff8ad1c61939183bf3c38 (diff)
downloadllvm-ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3.tar.gz
llvm-ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3.tar.bz2
llvm-ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3.tar.xz
[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 'test/Bitcode')
-rw-r--r--test/Bitcode/attributes.ll10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Bitcode/attributes.ll b/test/Bitcode/attributes.ll
index 502e967282..cfb214e792 100644
--- a/test/Bitcode/attributes.ll
+++ b/test/Bitcode/attributes.ll
@@ -162,3 +162,13 @@ define void @f27() address_safety
{
ret void;
}
+define void @f28() thread_safety
+; CHECK: define void @f28() thread_safety
+{
+ ret void;
+}
+define void @f29() uninitialized_checks
+; CHECK: define void @f29() uninitialized_checks
+{
+ ret void;
+}