llvm-project/flang/test/Parser/OpenMP/bind-clause.f90
Krzysztof Parzyszek a3d7724908
[flang][OpenMP] Make OmpDirectiveSpecification::Flags an EnumSet (#169713)
The idea is that there can be multiple flags on a given directive. When
"Flags" was a simple enum, only one flag could have been set at a time.
2025-11-28 08:41:40 -06:00

27 lines
913 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 = {}
!PARSE-TREE: | ExecutionPartConstruct -> ExecutableConstruct -> DoConstruct