brintos

brintos / llvm-project-archived public Read only

0
0
Text · 319 B · edb153c Raw
11 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp2! OpenMP Version 4.53! 2.15.3.6 Reduction Clause4program omp_reduction5  integer :: k6  ! misspelling. Should be "min"7  !ERROR: Invalid reduction operator in REDUCTION clause.8  !$omp parallel reduction(.min.:k)9  !$omp end parallel10end program omp_reduction11