aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/libgomp/testsuite/libgomp.fortran/udr10.f90
blob: b64b4f48800c5bcf6c12a2e8addbb690cedd380d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
! { dg-do run }

module udr10m
  type dt
    integer :: x = 0
  end type
!$omp declare reduction(.add.:dt:omp_out=omp_out.add.omp_in)
!$omp declare reduction(+:dt:omp_out=omp_out+omp_in)
  interface operator(+)
    module procedure addme
  end interface
  interface operator(.add.)
    module procedure addme
  end interface
contains
  type(dt) function addme (x, y)
    type (dt), intent (in) :: x, y
    addme%x = x%x + y%x
  end function addme
end module udr10m
program udr10
  use udr10m, only : operator(.localadd.) => operator(.add.), &
& operator(+), dl => dt
  type(dl) :: j, k
  integer :: i
!$omp parallel do reduction(+:j) reduction(.localadd.:k)
  do i = 1, 100
    j = j .localadd. dl(i)
    k = k + dl(i * 2)
  end do
  if (j%x /= 5050 .or. k%x /= 10100) call abort
end