aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/pr26806.f90
blob: fad5e9d56768864e3fa48f22b081e39bc7be8cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
module solv_cap
  integer,       private, save :: Ng1=0, Ng2=0
contains
  subroutine FourirG(G)
    real, intent(in out), dimension(0:,0:) :: G
    complex, allocatable, dimension(:,:)   :: t
    allocate( t(0:2*Ng1-1,0:2*Ng2-1) )
    t(0:Ng1,0:Ng2-1)    = G(:,0:Ng2-1)      ! Fill one quadrant (one extra row)
    t(0:Ng1,Ng2:2*Ng2-1) = G(:,Ng2:1:-1)    ! This quadrant using symmetry
  end subroutine FourirG
end module solv_cap