aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/ret_pointer_1.f90
blob: 5e87d1f1d2bfc70d5263ffb2777b17dc89f00368 (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
! PR16898 : XFAILed because of problems with aliasing of array descriptors.
!  Basically a and r get put in different alias sets, then the rtl optimizars
!  wreak havoc when foo is inlined.
! { dg-do run { xfail *-*-* } }
! Test functions returning array pointers
program ret_pointer_1
  integer, pointer, dimension(:) :: a
  integer, target, dimension(2) :: b
  integer, pointer, dimension (:) :: p

  a => NULL()
  a => foo()
  p => b
  if (.not. associated (a, p)) call abort
contains
subroutine bar(p)
  integer, pointer, dimension(:) :: p
end subroutine
function foo() result(r)
  integer, pointer, dimension(:) :: r

  r => b
end function
end program