blob: 8abbca3bb07cd49c70503cc784c9e30d32557982 [file] [log] [blame] [edit]
!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=51
subroutine f01(x)
integer :: x(10)
!ERROR: 'iterator' modifier cannot occur multiple times
!$omp target update to(iterator(i = 1:5), iterator(j = 1:5): x(i + j))
end
subroutine f03(x)
integer :: x(10)
!ERROR: 'expectation' modifier cannot occur multiple times
!$omp target update to(present, present: x)
end
subroutine f04
!ERROR: 'f04' must be a variable
!$omp target update to(f04)
end