aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/pr47008.f03
blob: a3e1e1dae0b5544240bc5a492c4dae74f665c06b (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
! PR rtl-optimization/47008
! { dg-do run }
! { dg-options "-Os -fno-asynchronous-unwind-tables -fschedule-insns -fsched-pressure -fno-inline" { target i?86-*-* x86_64-*-* } }

program main
  type :: t
    integer :: i
    character(24) :: c
    type (t), pointer :: p
  end type t
  type(t), pointer :: r, p
  allocate (p)
  p = t (123455, "", p)
  r => entry ("", 123456, 1, "", 99, "", p)
  if (p%i /= 123455) call abort
contains
  function entry (x, i, j, c, k, d, p) result (q)
    integer :: i, j, k
    character (*) :: x, c, d
    type (t), pointer :: p, q
    allocate (q)
    q = t (i, c, p)
  end function
end program main