comparison libgomp/testsuite/libgomp.fortran/pr27416-1.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
4 integer :: j 4 integer :: j
5 j = 6 5 j = 6
6 !$omp parallel num_threads (4) 6 !$omp parallel num_threads (4)
7 call foo (j) 7 call foo (j)
8 !$omp end parallel 8 !$omp end parallel
9 if (j.ne.6+16) STOP 1 9 if (j.ne.6+16) stop 1
10 end 10 end
11 11
12 subroutine foo (j) 12 subroutine foo (j)
13 integer :: i, j 13 integer :: i, j
14 14