[OpenACC] Treat 'delete' as a valid clause during parsing in C++ mode
[llvm-project.git] / flang / test / Lower / OpenMP / Todo / reduction-task.f90
blob6707f65e1a4cc3112d648f4c8dce02c3ea054463
1 ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
2 ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
4 ! CHECK: not yet implemented: Reduction modifiers are not supported
5 subroutine reduction_task()
6 integer :: i
7 i = 0
9 !$omp parallel reduction(task, +:i)
10 i = i + 1
11 !$omp end parallel
12 end subroutine reduction_task