brintos

brintos / llvm-project-archived public Read only

0
0
Text · 400 B · 2b96093 Raw
13 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! CHECK: not yet implemented: lastprivate clause with CONDITIONAL modifier5subroutine foo()6  integer :: x, i7  x = 18  !$omp parallel do lastprivate(conditional: x)9  do i = 1, 10010    x = x + 111  enddo12end13