aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/implicit_pure_1.f90
blob: cc35ab38397fd0144c89fade36239ba0ff6151f2 (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
! { dg-do run }
!
! PR fortran/51218
!
! Contributed by Harald Anlauf
!

module a
  implicit none
  integer :: neval = 0
contains
  subroutine inc_eval
    neval = neval + 1
  end subroutine inc_eval
end module a

module b
  use a
  implicit none
contains
  function f(x) ! Should be implicit pure
    real :: f
    real, intent(in) :: x
    f = x
  end function f

  function g(x) ! Should NOT be implicit pure
    real :: g
    real, intent(in) :: x
    call inc_eval
    g = x
  end function g
end module b

program gfcbug114a
  use a
  use b
  implicit none
  real :: x = 1, y = 1, t, u, v, w
  if (neval /= 0) STOP 1
  t = f(x)*f(y)
  if (neval /= 0) STOP 2
  u = f(x)*f(y) + f(x)*f(y)
  if (neval /= 0) STOP 3
  v = g(x)*g(y)
  if (neval /= 2) STOP 4
  w = g(x)*g(y) + g(x)*g(y)
  if (neval /= 6) STOP 5
  if (t /= 1.0 .or. u /= 2.0 .or. v /= 1.0 .or. w /= 2) STOP 6
end program gfcbug114a

! { dg-final { scan-module "b" "IMPLICIT_PURE" } }