view gcc/testsuite/gfortran.dg/init_flag_4.f90 @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
! { dg-options "-finit-real=inf" }
! { dg-add-options ieee }

program init_flag_4
  call real_test
end program init_flag_4

! 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 .le. 0 .or. r1 .ne. 2*r1) STOP 1
  if (r2(2) .le. 0 .or. r2(2) .ne. 2*r2(2)) STOP 2
  if (r3(5,5) .le. 0 .or. r3(5,5) .ne. 2*r3(5,5)) STOP 3
  if (r4 .le. 0 .or. r4 .ne. 2*r4) STOP 4
end subroutine real_test