aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/tls/diag-1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/tls/diag-1.C')
-rw-r--r--gcc/testsuite/g++.dg/tls/diag-1.C30
1 files changed, 0 insertions, 30 deletions
diff --git a/gcc/testsuite/g++.dg/tls/diag-1.C b/gcc/testsuite/g++.dg/tls/diag-1.C
deleted file mode 100644
index 697d0b13106..00000000000
--- a/gcc/testsuite/g++.dg/tls/diag-1.C
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Valid __thread specifiers. */
-
-__thread int g1;
-extern __thread int g2;
-static __thread int g3;
-
-void foo()
-{
- extern __thread int l1;
- static __thread int l2;
-}
-
-struct A {
- static __thread int i;
-};
-
-__thread int A::i = 42;
-
-template <typename T> struct B {
- static __thread T t;
-};
-
-template <typename T>
-__thread T B<T>::t = 42;
-
-void bar ()
-{
- int j = B<int>::t;
- int k = B<const int>::t;
-}