You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
440 B
25 lines
440 B
4 months ago
|
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
|
||
|
! XFAIL: *
|
||
|
|
||
|
! OpenMP Version 4.5
|
||
|
! 2.5 parallel construct.
|
||
|
! A program that branches into or out of a parallel region
|
||
|
! is non-conforming.
|
||
|
|
||
|
program omp_parallel
|
||
|
integer i, j, k
|
||
|
|
||
|
!ERROR: invalid entry to OpenMP structured block
|
||
|
goto 10
|
||
|
|
||
|
!$omp parallel
|
||
|
do i = 1, 10
|
||
|
do j = 1, 10
|
||
|
print *, "Hello"
|
||
|
10 stop
|
||
|
end do
|
||
|
end do
|
||
|
!$omp end parallel
|
||
|
|
||
|
end program omp_parallel
|