aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/master-1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/master-1.C')
-rw-r--r--gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/master-1.C24
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/master-1.C b/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/master-1.C
deleted file mode 100644
index 734b4e2cd..000000000
--- a/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/master-1.C
+++ /dev/null
@@ -1,24 +0,0 @@
-// PR c++/24734
-// { dg-do run }
-
-extern "C" void abort ();
-int i;
-
-template<int> void
-foo ()
-{
- #pragma omp parallel
- {
- #pragma omp master
- i++;
- }
-}
-
-int
-main ()
-{
- foo<0> ();
- if (i != 1)
- abort ();
- return 0;
-}