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 3 4! CHECK: not yet implemented: OpenMP Block construct clauses 5subroutine reduction_parallel 6 integer :: x 7 !$omp parallel reduction(+:x) 8 x = x + i 9 !$omp end parallel 10 print *, x 11end subroutine 12