blob: 73eb4ee1de1dbb6651cc250fc7b75b0f01dc1495 [file] [log] [blame]
! { dg-do compile }
! { dg-additional-options "-Wuninitialized" }
program test
implicit none
logical :: b, b2, b3, b4
integer :: data, data2
!$acc parallel if(b) ! { dg-warning "is used uninitialized" }
!$acc end parallel
!$acc kernels if(b2) ! { dg-warning "is used uninitialized" }
!$acc end kernels
!$acc data if(b3) ! { dg-warning "is used uninitialized" }
!$acc end data
!$acc update if(b4) self(data2) ! { dg-warning "is used uninitialized" }
end program test