brintos

brintos / llvm-project-archived public Read only

0
0
Text · 614 B · e5a9cff Raw
16 lines · plain
1! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s2! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s3 4!===============================================================================5! `mergeable` clause6!===============================================================================7 8! CHECK: not yet implemented: Unhandled clause IN_REDUCTION in TARGET construct9subroutine omp_target_inreduction()10  integer i11  i = 012  !$omp target in_reduction(+:i)13  i = i + 114  !$omp end target15end subroutine omp_target_inreduction16