URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [dependency_31.f90] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-options "-Warray-temporaries" }
! PR 45159 - make sure no temporary is created for this.
subroutine foo(a,n,i,j)
implicit none
integer, intent(in) :: i,j,n
real, dimension(20) :: a
a(1:10) = a(i:j)
a(20:n:-3) = a(n:i:-3)
end subroutine foo
Go to most recent revision | Compare with Previous | Blame | View Log