view gcc/testsuite/gfortran.dg/dependency_29.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-Warray-temporaries" }

subroutine t1(n1,n2, gfft, ufft)
  implicit none
  integer :: n1, n2, i
  real :: gfft(n1,n2), ufft(n2)
  DO i=1, n1
     gfft(i,:)=gfft(i,:)*ufft(i)
  END DO
end subroutine t1