[OpenACC] Treat 'delete' as a valid clause during parsing in C++ mode
[llvm-project.git] / flang / test / Lower / OpenMP / Todo / taskgroup-task-reduction.f90
blob1cb471d784d766e73cc2a0c3a0008923be49c2ae
1 ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s -fopenmp-version=50 2>&1 | FileCheck %s
2 ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s -fopenmp-version=50 2>&1 | FileCheck %s
4 ! CHECK: not yet implemented: Unhandled clause TASK_REDUCTION in TASKGROUP construct
5 subroutine omp_taskgroup_task_reduction
6 integer :: res
7 !$omp taskgroup task_reduction(+:res)
8 res = res + 1
9 !$omp end taskgroup
10 end subroutine omp_taskgroup_task_reduction