Files
clang-p2996/flang/test/Semantics/OpenMP/target.f90
Kiran Chandramohan 3323a4bd3d [Flang][OpenMP] NFC: Remove omp prefix of test files in OpenMP Semantics
For tests in the OpenMP sub-directory the `omp` prefix is removed.
2023-02-25 11:21:38 +00:00

12 lines
211 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp -Werror
! Corner cases in OpenMP target directives
subroutine empty_target()
integer :: i
!$omp target map(i)
!$omp end target
end subroutine