aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/coarray_42.f90
blob: e99cc9e5f70ec96156562d093c63bb6e900bac30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
! { dg-do run }
! { dg-options "-fdump-tree-original -fcoarray=lib -lcaf_single" }
! { dg-additional-options "-latomic" { target libatomic_available } }

program Jac
  type Domain
    integer :: n=64
    integer,allocatable :: endsi(:)
  end type
  type(Domain),allocatable :: D[:,:,:]

  allocate(D[2,2,*])
  allocate(D%endsi(2), source = 0)
  ! Lhs may be reallocate. Due to new communication pattern no send.
  D%endsi = D%n
  if (any(D%endsi /= [ 64, 64])) error stop
  deallocate(D)
end program

! { dg-final { scan-tree-dump-not "caf_send" "original" } }