view gcc/testsuite/gfortran.dg/init_flag_5.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900 (2020-02-13)
parents 84e7813d76e9
children
line wrap: on
line source
! { 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