05e0af4386
2018-04-16 Cesar Philippidis <cesar@codesourcery.com> Tom de Vries <tom@codesourcery.com> PR middle-end/84955 * omp-expand.c (expand_oacc_for): Add dummy false branch for tiled basic blocks without omp continue statements. * testsuite/libgomp.oacc-c-c++-common/pr84955.c: New test. * testsuite/libgomp.oacc-fortran/pr84955.f90: New test. Co-Authored-By: Tom de Vries <tom@codesourcery.com> From-SVN: r259406
14 lines
215 B
Fortran
14 lines
215 B
Fortran
! { dg-do compile }
|
|
|
|
subroutine s
|
|
integer :: i, j
|
|
!$acc parallel loop tile(2,3)
|
|
do i = 1, 10
|
|
do j = 1, 10
|
|
do
|
|
end do
|
|
end do
|
|
end do
|
|
!$acc end parallel loop
|
|
end subroutine s
|