10 lines · plain
1!RUN: %not_todo_cmd bbc -emit-hlfir -fopenmp -fopenmp-version=61 -o - %s 2>&1 | FileCheck %s2!RUN: %not_todo_cmd %flang_fc1 -emit-hlfir -fopenmp -fopenmp-version=61 -o - %s 2>&1 | FileCheck %s3 4!CHECK: not yet implemented: ATTACH modifier is not implemented yet5subroutine f00(x)6 integer, pointer :: x7 !$omp target map(attach(always), tofrom: x)8 !$omp end target9end10