llvm-project/flang/test/Parser/OpenMP/bind-clause.f90
Krzysztof Parzyszek e70e9ec3b8
[flang][OpenMP] Store Block in OpenMPLoopConstruct, add access functions (#168078)
Instead of storing a variant with specific types, store parser::Block as
the body. Add two access functions to make the traversal of the nest
simpler.

This will allow storing loop-nest sequences in the future.
2025-11-17 08:02:36 -06:00

27 lines
915 B
Fortran

!RUN: %flang_fc1 -fdebug-unparse -fopenmp -fopenmp-version=50 %s | FileCheck --ignore-case --check-prefix="UNPARSE" %s
!RUN: %flang_fc1 -fdebug-dump-parse-tree -fopenmp -fopenmp-version=50 %s | FileCheck --check-prefix="PARSE-TREE" %s
subroutine f00
!$omp loop bind(parallel)
do i = 1, 10
continue
enddo
!$omp end loop
end
!UNPARSE: SUBROUTINE f00
!UNPARSE: !$OMP LOOP BIND(PARALLEL)
!UNPARSE: DO i=1_4,10_4
!UNPARSE: CONTINUE
!UNPARSE: END DO
!UNPARSE: !$OMP END LOOP
!UNPARSE: END SUBROUTINE
!PARSE-TREE: ExecutionPartConstruct -> ExecutableConstruct -> OpenMPConstruct -> OpenMPLoopConstruct
!PARSE-TREE: | OmpBeginLoopDirective
!PARSE-TREE: | | OmpDirectiveName -> llvm::omp::Directive = loop
!PARSE-TREE: | | OmpClauseList -> OmpClause -> Bind -> OmpBindClause -> Binding = Parallel
!PARSE-TREE: | | Flags = None
!PARSE-TREE: | ExecutionPartConstruct -> ExecutableConstruct -> DoConstruct