bolt/deps/llvm-18.1.8/flang/test/Lower/pre-fir-tree07.f90

12 lines
301 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
! RUN: %flang_fc1 -fdebug-pre-fir-tree -fopenacc %s | FileCheck %s
! Test structure of the Pre-FIR tree with OpenACC declarative construct
! CHECK: Module m: module m
module m
real, dimension(10) :: x
! CHECK-NEXT: OpenACCDeclarativeConstruct
!$acc declare create(x)
end
! CHECK: End Module m