URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [vector_subscript_6.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-fdump-tree-original" }subroutine test0(esss,Ix, e_x)real(kind=kind(1.0d0)), dimension(:), intent(out) :: esssreal(kind=kind(1.0d0)), dimension(:), intent(in) :: Ixinteger(kind=kind(1)), dimension(:), intent(in) :: e_xesss = Ix(e_x)end subroutinesubroutine test1(esss,Ix, e_x)real(kind=kind(1.0d0)), dimension(:), intent(out) :: esssreal(kind=kind(1.0d0)), dimension(:), intent(in) :: Ixinteger(kind=4), dimension(:), intent(in) :: e_xesss = Ix(e_x)end subroutinesubroutine test2(esss,Ix, e_x)real(kind=kind(1.0d0)), dimension(:), intent(out) :: esssreal(kind=kind(1.0d0)), dimension(:), intent(in) :: Ixinteger(kind=8), dimension(:), intent(in) :: e_xesss = Ix(e_x)end subroutinesubroutine test3(esss,Ix,Iyz, e_x, ii_ivec)real(kind=kind(1.0d0)), dimension(:), intent(out) :: esssreal(kind=kind(1.0d0)), dimension(:), intent(in) :: Ix,Iyzinteger(kind=kind(1)), dimension(:), intent(in) :: e_x,ii_ivecesss = esss + Ix(e_x) * Iyz(ii_ivec)end subroutine! { dg-final { scan-tree-dump-not "malloc" "original" } }! { dg-final { cleanup-tree-dump "original" } }
