brintos

brintos / llvm-project-archived public Read only

0
0
Text · 486 B · d2e6a11 Raw
18 lines · plain
1!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=45 -Werror2 3subroutine f00(x)4  integer :: x5!WARNING: INOUTSET task dependence type is not supported in OpenMP v4.5, try -fopenmp-version=526  !$omp task depend(inoutset: x)7  x = x + 18  !$omp end task9end10 11subroutine f01(x)12  integer :: x13!WARNING: MUTEXINOUTSET task dependence type is not supported in OpenMP v4.5, try -fopenmp-version=5014  !$omp task depend(mutexinoutset: x)15  x = x + 116  !$omp end task17end18