Retro68/gcc/gcc/testsuite/gfortran.dg/pr43475.f90
Wolfgang Thaller aaf905ce07 add gcc 4.70
2012-03-28 01:13:14 +02:00

15 lines
224 B
Fortran

! 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