File: pr90240.f

package info (click to toggle)
gcc-arm-none-eabi 15%3A12.2.rel1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 959,712 kB
  • sloc: cpp: 3,275,382; ansic: 2,061,766; ada: 840,956; f90: 208,513; makefile: 76,132; asm: 73,433; xml: 50,448; exp: 34,146; sh: 32,436; objc: 15,637; fortran: 14,012; python: 11,991; pascal: 6,787; awk: 4,779; perl: 3,054; yacc: 338; ml: 285; lex: 201; haskell: 122
file content (18 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do compile }
! { dg-options "-O1 -floop-nest-optimize" }

      PARAMETER (n=1335, N2=1335)
      COMMON  a(n,N2), b(n,N2), c(n,N2),
     *        d(n,N2),
     2        e(n,N2), f(n,N2),
     *        g(n,N2), h(n,N2)               
      DO 200 j=1,i
      DO 300 k=1,l
      a(k,j) = c(k,j)*g(k,j)*f(k+1,m)+f(k,m)+f(k,j)
     2       +f(k+1,j)*h(k+1,j)
      b(k,j+1) = d(k,j+1)*g(k,m)+g(k,j+1)
     1       *e(k,m)+e(k,j+1)+e(k,j)+e(k+1,j)
     2       *h(k,j+1)-h(k,j)
  300 ENDDO
  200 ENDDO
      END