aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/goacc/uninit-use-device-clause.f95
blob: f661f51fe3f288d2375960ef8a512f2fb1bd0877 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! { dg-additional-options "-Wuninitialized" }

subroutine test
  integer, pointer :: p
  ! { dg-note {'p' was declared here} {} { target *-*-* } .-1 }

  !$acc host_data use_device(p) ! { dg-warning "is used uninitialized" }
  !$acc end host_data
end subroutine test