Files
clang-p2996/flang/test/Lower/OpenMP/Todo/from-expectation-modifier.f90
Krzysztof Parzyszek 1c6ec29b6b [flang][OpenMP] Parsing support for iterator modifiers in FROM and TO (#114593)
Parse PRESENT modifier as well while we're at it (no MAPPER though). Add
semantic checks for these clauses in the TARGET UPDATE construct, TODO
messages in lowering.
2024-11-04 10:44:56 -06:00

9 lines
337 B
Fortran

!RUN: %not_todo_cmd bbc -emit-hlfir -fopenmp -fopenmp-version=52 -o - %s 2>&1 | FileCheck %s
!RUN: %not_todo_cmd %flang_fc1 -emit-hlfir -fopenmp -fopenmp-version=52 -o - %s 2>&1 | FileCheck %s
!CHECK: not yet implemented: PRESENT modifier is not supported yet
subroutine f00(x)
integer :: x
!$omp target update from(present: x)
end