URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [pr43475.f90] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
! PR middle-end/43475
! { dg-do compile }
! { dg-options "-O2" }
subroutine ss(w)
implicit none
integer :: w(:)
integer :: b,c,d
b = w(8)
c = 5
d = 3
call s1(c)
call s2(b+c)
call s3(w(b))
end subroutine ss
Go to most recent revision | Compare with Previous | Blame | View Log