summaryrefslogtreecommitdiff
path: root/test/Bitcode/attributes.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Bitcode/attributes.ll')
-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;
+}