brintos

brintos / llvm-project-archived public Read only

0
0
Text · 281 B · f77a0b0 Raw
9 lines · plain
1!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=612 3subroutine f00(x)4  integer :: x5  !ERROR: The access-group modifier can only occur on a single clause in a construct6  !$omp target dyn_groupprivate(cgroup: x), dyn_groupprivate(10)7  !$omp end target8end9