[WebAssembly] Fix asan issue from https://reviews.llvm.org/D121349
[llvm-project.git] / flang / test / Semantics / omp-copyprivate02.f90
blobe2d408aac781e853fe3df4796bb7551482358e21
1 ! RUN: %python %S/test_errors.py %s %flang_fc1 -fopenmp
2 ! OpenMP Version 4.5
3 ! 2.15.4.2 copyprivate Clause
4 ! Pointers with the INTENT(IN) attribute may not appear in a copyprivate clause.
6 subroutine omp_copyprivate(p)
7 integer :: a(10), b(10), c(10)
8 integer, pointer, intent(in) :: p
10 a = 10
11 b = 20
13 !$omp parallel
14 !$omp single
15 c = a + b + p
16 !ERROR: COPYPRIVATE variable 'p' is not PRIVATE or THREADPRIVATE in outer context
17 !ERROR: Pointer 'p' with the INTENT(IN) attribute may not appear in a COPYPRIVATE clause
18 !$omp end single copyprivate(p)
19 !$omp end parallel
21 print *, c
23 end subroutine omp_copyprivate