aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/tls/diag-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/tls/diag-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/tls/diag-1.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/tls/diag-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/tls/diag-1.c
deleted file mode 100644
index 56b570c94..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/tls/diag-1.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* 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;
-}