File: where_2.f90

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 (36 lines) | stat: -rw-r--r-- 833 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
! { dg-do run }
! Tests the fix for PR35743 and PR35745.
!
! Contributed by Dick Hendrickson <dick.hendrickson@gmail.com>
!
program try_rg0025
  logical lda(5)
  lda = (/(i/2*2 .ne. I, i=1,5)/)
  call PR35743 (lda,  1,  2,  3,  5,  6, -1, -2)
  CALL PR34745
end program

! Previously, the negative mask size would not be detected.
SUBROUTINE PR35743 (LDA,nf1,nf2,nf3,nf5,nf6,mf1,mf2)
  type unseq
    real  r
  end type unseq
  TYPE(UNSEQ) TDA1L(6)
  LOGICAL LDA(NF5)
  TDA1L(1:6)%r = 1.0
  WHERE (LDA(NF6:NF3))
    TDA1L(MF1:NF5:MF1) = TDA1L(NF6:NF2)
  ENDWHERE
END SUBROUTINE

! Previously, the expression in the WHERE block would be evaluated
! ouside the loop generated by the where.
SUBROUTINE PR34745
  INTEGER IDA(10)
  REAL RDA(10)
  RDA    = 1.0
  nf0 = 0
  WHERE (RDA < -15.0)
    IDA = 1/NF0 + 2
  ENDWHERE
END SUBROUTINE