aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs2.f
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs2.f')
-rw-r--r--gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs2.f13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs2.f b/gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs2.f
deleted file mode 100644
index 7aed5498d..000000000
--- a/gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs2.f
+++ /dev/null
@@ -1,13 +0,0 @@
-! { dg-options "-ffixed-form" }
- if (b().ne.2) call abort
- contains
- subroutine a
-!$omp parallel
-!$omp end parallel
- end subroutine a
- function b()
- integer :: b
- b = 1
-!$ b = 2
- end function b
- end