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 | d688bab563da574394913722eea9fb8a9e062660 (patch) | |
tree | 0d32257552d82cc26eab960dba3a1af6f5ace4c7 /llvm/test/Bitcode | |
parent | 35d2dc765e8e69f6710104f5fd6109a1f49c085e (diff) | |
download | bcm5719-llvm-d688bab563da574394913722eea9fb8a9e062660.tar.gz bcm5719-llvm-d688bab563da574394913722eea9fb8a9e062660.zip |
[tsan/msan] adding thread_safety and uninitialized_checks attributes
llvm-svn: 174864
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r-- | llvm/test/Bitcode/attributes.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/Bitcode/attributes.ll b/llvm/test/Bitcode/attributes.ll index 502e9672823..cfb214e7920 100644 --- a/llvm/test/Bitcode/attributes.ll +++ b/llvm/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; +} |