16 lines
497 B
Fortran
16 lines
497 B
Fortran
!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=52
|
|
|
|
subroutine f00
|
|
integer :: obj
|
|
!WARNING: The SOURCE task-dependence-type is deprecated in OpenMP v5.2
|
|
!ERROR: A DEPEND clause on a DEPOBJ construct must not have SOURCE or SINK as dependence-type
|
|
!$omp depobj(obj) depend(source)
|
|
end
|
|
|
|
subroutine f03
|
|
integer :: obj, jbo
|
|
!Note: no portability message
|
|
!ERROR: The DESTROY clause must refer to the same object as the DEPOBJ construct
|
|
!$omp depobj(obj) destroy(jbo)
|
|
end
|