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 /test/Bitcode | |
parent | f64c889cc94417322b0ff8ad1c61939183bf3c38 (diff) |
[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.ll | 10 |
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; +} |