blob: 14d960a1f3856e21e34a768a48e4aa1245d7ebca [file] [log] [blame]
! { dg-do compile }
! { dg-additional-options "-Wuninitialized" }
subroutine test
INTEGER :: i
!$acc parallel
i = 1
!$acc end parallel
end subroutine test
subroutine test2
INTEGER :: i
!$acc parallel firstprivate (i) ! { dg-warning "is used uninitialized in this function" }
i = 1
!$acc end parallel
end subroutine test2