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.
23 lines
426 B
23 lines
426 B
4 months ago
|
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
|
||
|
! XFAIL: *
|
||
|
|
||
|
! OpenMP Version 4.5
|
||
|
! 2.9.2 taskloop Construct
|
||
|
! Invalid entry to OpenMP structured block.
|
||
|
|
||
|
program omp_taskloop
|
||
|
integer i , j
|
||
|
|
||
|
!ERROR: invalid entry to OpenMP structured block
|
||
|
goto 10
|
||
|
|
||
|
!$omp taskloop private(j) grainsize(500) nogroup
|
||
|
do i=1,10000
|
||
|
do j=1,i
|
||
|
10 call loop_body(i, j)
|
||
|
end do
|
||
|
end do
|
||
|
!$omp end taskloop
|
||
|
|
||
|
end program omp_taskloop
|