annotate gcc/testsuite/gfortran.dg/pr52621.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do compile }
kono
parents:
diff changeset
2 ! { dg-options "-O2 -fprefetch-loop-arrays -w" }
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 SUBROUTINE GHDSYM(IZ,IS,LMMAX,S,LMS,Y,L2M,DRL,NLAY2,K0,DCUT)!,
kono
parents:
diff changeset
5 !
kono
parents:
diff changeset
6 COMPLEX Y(L2M,L2M),H(33),S(LMS)
kono
parents:
diff changeset
7 COMPLEX RU,CI,CZ,K0,FF,Z,Z1,Z2,Z3,ST
kono
parents:
diff changeset
8 !
kono
parents:
diff changeset
9 DO 140 KK=1,4
kono
parents:
diff changeset
10 DO 130 L=1,L2M
kono
parents:
diff changeset
11 L1=L*L-L
kono
parents:
diff changeset
12 DO 120 M=1,L
kono
parents:
diff changeset
13 IPM=L1+M
kono
parents:
diff changeset
14 IMM=L1-M+2
kono
parents:
diff changeset
15 S(IPM)=S(IPM)+Z3*Y(L,M)
kono
parents:
diff changeset
16 IF (M.NE.1) S(IMM)=S(IMM)+Z3*Y(M-1,L)*CSGN
kono
parents:
diff changeset
17 120 CONTINUE
kono
parents:
diff changeset
18 130 CONTINUE
kono
parents:
diff changeset
19 140 CONTINUE
kono
parents:
diff changeset
20 END