bolt/deps/llvm-18.1.8/flang/test/Lower/OpenMP/Todo/firstprivate-target.f90

10 lines
304 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
integer :: i
! CHECK: not yet implemented: Unhandled clause FIRSTPRIVATE in TARGET construct
!$omp target firstprivate(i)
!$omp end target
end program