aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/libgomp/testsuite/libgomp.fortran/tabs1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/libgomp/testsuite/libgomp.fortran/tabs1.f90')
-rw-r--r--gcc-4.9/libgomp/testsuite/libgomp.fortran/tabs1.f9012
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc-4.9/libgomp/testsuite/libgomp.fortran/tabs1.f90 b/gcc-4.9/libgomp/testsuite/libgomp.fortran/tabs1.f90
new file mode 100644
index 000000000..4f3d4f5b4
--- /dev/null
+++ b/gcc-4.9/libgomp/testsuite/libgomp.fortran/tabs1.f90
@@ -0,0 +1,12 @@
+ 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