aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/module_variable_3.f90
blob: 0dae6d5bdd5c3cab2d0cd2f7cff11432f76f795c (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
! { dg-do compile }
! { dg-additional-options "-fdump-tree-original" }
!
! PR fortran/97927
!
! Did ICE due to the in tree-nested.c due to {clobber}
!

module mpi2
 interface
   subroutine MPI_Allreduce(i)
     implicit none
     INTEGER, OPTIONAL, INTENT(OUT) :: i
   end subroutine MPI_Allreduce
 end interface
end module

module modmpi
  implicit none
  integer ierror  ! module variable = context NAMESPACE_DECL
end module

subroutine exxengy
  use modmpi
  use mpi2, only: mpi_allreduce
  implicit none

  ! intent(out) implies: ierror = {clobber}
  call mpi_allreduce(ierror)

contains
  subroutine zrho2
    return
  end subroutine
end subroutine

! { dg-final { scan-tree-dump "ierror = {CLOBBER};" "original" } }