brintos

brintos / llvm-project-archived public Read only

0
0
Text · 211 B · 994c040 Raw
12 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp -Werror2 3! Corner cases in OpenMP target directives4 5subroutine empty_target()6  integer :: i7 8  !$omp target map(i)9  !$omp end target10 11end subroutine12