aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/libgomp/testsuite/libgomp.fortran/udr15.f90
blob: 2d1169568dd9a5d5bf209caa8e1c6a687f9dff36 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
! { dg-do run }

module udr15m1
  integer, parameter :: a = 6
  integer :: b
!$omp declare reduction (foo : integer : omp_out = omp_out + omp_in)
!$omp declare reduction (.add. : integer : &
!$omp & omp_out = omp_out .add. f3 (omp_in, -4)) &
!$omp & initializer (s1 (omp_priv, omp_orig))
  interface operator (.add.)
    module procedure f1
  end interface
contains
  integer function f1 (x, y)
    integer, intent (in) :: x, y
    f1 = x + y
  end function f1
  integer function f3 (x, y)
    integer, intent (in) :: x, y
    f3 = iand (x, y)
  end function f3
  subroutine s1 (x, y)
    integer, intent (in) :: y
    integer, intent (out) :: x
    x = 3
  end subroutine s1
end module udr15m1
module udr15m2
  use udr15m1, f4 => f1, f5 => f3, s2 => s1, operator (.addtwo.) => operator (.add.)
  type dt
    integer :: x
  end type
!$omp declare reduction (+ : dt : omp_out = f6 (omp_out + omp_in)) &
!$omp & initializer (s3 (omp_priv))
  interface operator (+)
    module procedure f2
  end interface
contains
  type(dt) function f2 (x, y)
    type(dt), intent (in) :: x, y
    f2%x = x%x + y%x
  end function f2
  type(dt) function f6 (x)
    type(dt), intent (in) :: x
    f6%x = x%x
  end function f6
  subroutine s3 (x)
    type(dt), intent (out) :: x
    x = dt(0)
  end subroutine
end module udr15m2
  use udr15m2, operator (.addthree.) => operator (.addtwo.), &
               f7 => f4, f8 => f6, s4 => s3
  integer :: i, j
  type(dt) :: d
  j = 3
  d%x = 0
!$omp parallel do reduction (.addthree.: j) reduction (+ : d)
  do i = 1, 100
    j = j.addthree.iand (i, -4)
    d = d + dt(i)
  end do
  if (d%x /= 5050 .or. j /= 4903) call abort
end