11 lines · plain
1! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s -fopenmp-version=50 2>&1 | FileCheck %s2! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s -fopenmp-version=50 2>&1 | FileCheck %s3 4! CHECK: not yet implemented: Unhandled clause DEPEND in TASKWAIT construct5subroutine omp_tw_depend6 integer :: res7 !$omp taskwait depend(out: res)8 res = res + 19end subroutine omp_tw_depend10 11