1 ! RUN: %flang_fc1 -fdebug-unparse -fopenmp -fopenmp-version=51 %s | FileCheck --ignore-case %s
2 ! RUN: %flang_fc1 -fdebug-dump-parse-tree -fopenmp -fopenmp-version=51 %s | FileCheck --check-prefix="PARSE-TREE" %s
4 subroutine openmp_tiles(x
)
6 integer, intent(inout
)::x
8 !CHECK: !$omp tile sizes
15 !CHECK: !$omp end tile
19 !PARSE-TREE: OpenMPConstruct -> OpenMPLoopConstruct
20 !PARSE-TREE: OmpBeginLoopDirective
21 !PARSE-TREE: OmpLoopDirective -> llvm::omp::Directive = tile
22 !PARSE-TREE: OmpClauseList -> OmpClause -> Sizes -> Scalar -> Integer -> Expr = '2_4'
23 END subroutine openmp_tiles