re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / module_nan.f90
blob81d3784a38ea1fd05e69022899f775d44a215da9
1 ! { dg-do run }
2 ! { dg-options "-fno-range-check" }
3 ! { dg-add-options ieee }
4 ! { dg-skip-if "NaN not supported" { spu-*-* } }
6 ! PR fortran/34318
8 ! Infinity and NaN were not properly written to the .mod file.
10 module nonordinal
11 implicit none
12 real, parameter :: inf = 1./0., nan = 0./0., minf = -1./0.0
13 end module nonordinal
15 program a
16 use nonordinal
17 implicit none
18 character(len=20) :: str
19 if (log(abs(inf)) < huge(inf)) STOP 1
20 if (log(abs(minf)) < huge(inf)) STOP 2
21 if (.not. isnan(nan)) STOP 3
22 write(str,"(sp,f10.2)") inf
23 if (adjustl(str) /= "+Infinity") STOP 4
24 write(str,*) minf
25 if (adjustl(str) /= "-Infinity") STOP 5
26 write(str,*) nan
27 if (adjustl(str) /= "NaN") STOP 6
28 end program a