! { dg-do run } | |
! { dg-options "-finit-real=-inf" } | |
! { dg-add-options ieee } | |
program init_flag_5 | |
call real_test | |
end program init_flag_5 | |
! Test some initializations for both implicitly and | |
! explicitly declared local variables. | |
subroutine real_test | |
real r1 | |
real r2(10) | |
dimension r3(10,10) | |
if (r1 .ge. 0 .or. r1 .ne. 2*r1) STOP 1 | |
if (r2(2) .ge. 0 .or. r2(2) .ne. 2*r2(2)) STOP 2 | |
if (r3(5,5) .ge. 0 .or. r3(5,5) .ne. 2*r3(5,5)) STOP 3 | |
if (r4 .ge. 0 .or. r4 .ne. 2*r4) STOP 4 | |
end subroutine real_test |