[VectorCombine] foldInsExtVectorToShuffle - canonicalize new shuffle(undef,x) ->...
[llvm-project.git] / flang / test / Semantics / OpenMP / requires07.f90
blob2a36b4def9199cb88d6ba723809a2f9764074a20
1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
2 ! OpenMP Version 5.0
3 ! 2.4 Requires directive
4 ! Target-related clauses in 'requires' directives must come strictly before any
5 ! device constructs, such as target parallel regions.
7 subroutine f
8 !$omp target parallel
9 !$omp end target parallel
10 end subroutine f
12 subroutine g
13 !ERROR: REQUIRES directive with 'DYNAMIC_ALLOCATORS' clause found lexically after device construct
14 !$omp requires dynamic_allocators
15 !ERROR: REQUIRES directive with 'REVERSE_OFFLOAD' clause found lexically after device construct
16 !$omp requires reverse_offload
17 !ERROR: REQUIRES directive with 'UNIFIED_ADDRESS' clause found lexically after device construct
18 !$omp requires unified_address
19 !ERROR: REQUIRES directive with 'UNIFIED_SHARED_MEMORY' clause found lexically after device construct
20 !$omp requires unified_shared_memory
21 end subroutine g