aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/gomp/target3.f90
blob: d968e54453d521416e9d0eef7ab5983cb0f4e9b1 (plain)
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