Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Lower / OpenMP / Todo / parallel-reduction.f90
blobdf13f1faefe80674a905b667896aabc8e874c4ce
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 in OpenMP parallel construct
5 subroutine reduction_parallel
6 integer :: x
7 !$omp parallel reduction(+:x)
8 x = x + i
9 !$omp end parallel
10 print *, x
11 end subroutine