comparison libgomp/testsuite/libgomp.fortran/pr27416-1.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
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 ! PR middle-end/27416
2 ! { dg-do run }
3
4 integer :: j
5 j = 6
6 !$omp parallel num_threads (4)
7 call foo (j)
8 !$omp end parallel
9 if (j.ne.6+16) call abort
10 end
11
12 subroutine foo (j)
13 integer :: i, j
14
15 !$omp do firstprivate (j) lastprivate (j)
16 do i = 1, 16
17 if (i.eq.16) j = j + i
18 end do
19 end subroutine foo