aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-1.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-1.mm')
-rw-r--r--gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-1.mm12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-1.mm b/gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-1.mm
new file mode 100644
index 000000000..7c3245d9f
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-1.mm
@@ -0,0 +1,12 @@
+// Valid __thread specifiers.
+// { dg-require-effective-target tls }
+
+__thread int g1;
+extern __thread int g2;
+static __thread int g3;
+
+void foo()
+{
+ extern __thread int l1;
+ static __thread int l2;
+}