aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/vector_subscript_6.f90
blob: 51613d11368c1173c798fbdeca78d13279742fe0 (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
! { dg-do compile }
! { dg-options "-fdump-tree-original" }

subroutine test0(esss,Ix, e_x)
  real(kind=kind(1.0d0)), dimension(:), intent(out) :: esss
  real(kind=kind(1.0d0)), dimension(:), intent(in) :: Ix
  integer(kind=kind(1)), dimension(:), intent(in) :: e_x
  esss = Ix(e_x)
end subroutine

subroutine test1(esss,Ix, e_x)
  real(kind=kind(1.0d0)), dimension(:), intent(out) :: esss
  real(kind=kind(1.0d0)), dimension(:), intent(in) :: Ix
  integer(kind=4), dimension(:), intent(in) :: e_x
  esss = Ix(e_x)
end subroutine

subroutine test2(esss,Ix, e_x)
  real(kind=kind(1.0d0)), dimension(:), intent(out) :: esss
  real(kind=kind(1.0d0)), dimension(:), intent(in) :: Ix
  integer(kind=8), dimension(:), intent(in) :: e_x
  esss = Ix(e_x)
end subroutine

subroutine test3(esss,Ix,Iyz, e_x, ii_ivec)
  real(kind=kind(1.0d0)), dimension(:), intent(out) :: esss
  real(kind=kind(1.0d0)), dimension(:), intent(in) :: Ix,Iyz
  integer(kind=kind(1)), dimension(:), intent(in) :: e_x,ii_ivec
  esss = esss + Ix(e_x) * Iyz(ii_ivec)
end subroutine

! { dg-final { scan-tree-dump-not "malloc" "original" } }
! { dg-final { cleanup-tree-dump "original" } }