aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/init_flag_5.f90
blob: 54f891f49e8d9a99e49e752358ae1f98bd0be7bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { 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) call abort
  if (r2(2) .ge. 0 .or. r2(2) .ne. 2*r2(2)) call abort
  if (r3(5,5) .ge. 0 .or. r3(5,5) .ne. 2*r3(5,5)) call abort
  if (r4 .ge. 0 .or. r4 .ne. 2*r4) call abort
end subroutine real_test