view gcc/testsuite/gfortran.dg/init_flag_5.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
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