1 ! RUN: %flang_fc1 -fdebug-unparse -fopenmp %s | FileCheck --ignore-case %s
2 ! RUN: %flang_fc1 -fdebug-dump-parse-tree -fopenmp %s | FileCheck --check-prefix="PARSE-TREE" %s
4 subroutine openmp_tiles(x
)
6 integer, intent(inout
)::x
15 !CHECK: !$omp end tile
18 !PARSE-TREE: OpenMPConstruct -> OpenMPLoopConstruct
19 !PARSE-TREE: OmpBeginLoopDirective
20 !PARSE-TREE: OmpLoopDirective -> llvm::omp::Directive = tile
22 END subroutine openmp_tiles