PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gfortran.dg / init_flag_5.f90
blobdc3872619e6d511470578611a308187368c08fbf
1 ! { dg-do run }
2 ! { dg-options "-finit-real=-inf" }
3 ! { dg-add-options ieee }
5 program init_flag_5
6 call real_test
7 end program init_flag_5
9 ! Test some initializations for both implicitly and
10 ! explicitly declared local variables.
11 subroutine real_test
12 real r1
13 real r2(10)
14 dimension r3(10,10)
15 if (r1 .ge. 0 .or. r1 .ne. 2*r1) STOP 1
16 if (r2(2) .ge. 0 .or. r2(2) .ne. 2*r2(2)) STOP 2
17 if (r3(5,5) .ge. 0 .or. r3(5,5) .ne. 2*r3(5,5)) STOP 3
18 if (r4 .ge. 0 .or. r4 .ne. 2*r4) STOP 4
19 end subroutine real_test