xref: /llvm-project/flang/test/Lower/OpenMP/Todo/firstprivate-target.f90 (revision 841c4dc7e51e0699a7054c89bd240ba33f7bf15e)
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
4integer :: i
5! CHECK: not yet implemented: Unhandled clause FIRSTPRIVATE in TARGET construct
6!$omp target firstprivate(i)
7!$omp end target
8
9end program
10