12 lines · plain
1! RUN: %flang_fc1 -fdebug-pre-fir-tree -fopenacc %s | FileCheck %s2 3! Test structure of the Pre-FIR tree with OpenACC declarative construct4 5! CHECK: Module m: module m6module m7 real, dimension(10) :: x8 ! CHECK-NEXT: OpenACCDeclarativeConstruct9 !$acc declare create(x)10end11! CHECK: End Module m12