aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/pr26171.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/pr26171.c')
-rw-r--r--gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/pr26171.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/pr26171.c b/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/pr26171.c
deleted file mode 100644
index eacc9a71d..000000000
--- a/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/pr26171.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* PR c/26171 */
-/* { dg-do run } */
-/* { dg-options "-fopenmp" } */
-/* { dg-require-effective-target tls_runtime } */
-
-int thrv = 0;
-#pragma omp threadprivate (thrv)
-
-int
-main ()
-{
- thrv = 1;
- return 0;
-}