1 2 3 4 5 6 7 8 9 10 11
! { dg-do compile } subroutine foo (r) integer :: i, r !$omp target !$omp target teams distribute parallel do reduction (+: r) ! { dg-warning ".target. construct inside of .target. region" } do i = 1, 10 r = r + 1 end do !$omp end target end subroutine