view libgomp/testsuite/libgomp.fortran/tabs1.f90 @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 84e7813d76e9
line wrap: on
line source

	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