Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/array_5.f90 @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
! { dg-do compile } ! ! PR fortran/54166 ! There was an ICE while chosing the bounds to scalarize the FAIL line. ! ! Contributed by Koen Poppe <koen.poppe@cs.kuleuven.be> ! module ds_routines contains subroutine dsget(vertic,rstore) real, dimension(:), intent(in out) :: rstore real, dimension(:,:), intent(out) :: vertic integer :: nrvert,point nrvert = 4 point = 26 vertic(1,1:nrvert) = rstore(point+1:point+nrvert) ! FAIL end subroutine dsget end module ds_routines program ds_routines_program use ds_routines print *, "ok" end program ds_routines_program