Files
clang-p2996/flang/test/Lower/OpenMP/Todo/depobj-construct.f90
Krzysztof Parzyszek c478aab684 [flang][OpenMP] Parser support for DEPOBJ plus DEPEND, DESTROY, UPDATE (#114074)
Parse the DEPOBJ construct and the associated clauses, perform basic
semantic checks.
2024-10-30 08:36:08 -05:00

10 lines
332 B
Fortran

!RUN: %not_todo_cmd bbc -emit-hlfir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s
!RUN: %not_todo_cmd %flang_fc1 -emit-hlfir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s
!CHECK: not yet implemented: OpenMPDepobjConstruct
subroutine f00()
integer :: obj
integer :: x
!$omp depobj(obj) depend(in: x)
end