diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/isnan_2.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/isnan_2.f90 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/isnan_2.f90 b/gcc/testsuite/gfortran.dg/isnan_2.f90 new file mode 100644 index 000000000..455ecef1f --- /dev/null +++ b/gcc/testsuite/gfortran.dg/isnan_2.f90 @@ -0,0 +1,18 @@ +! Test for the ISNAN intrinsic on constants +! +! { dg-do run } +! { dg-options "-fno-range-check" } +! { dg-add-options ieee } +! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } } +! + implicit none + character(len=1) :: s + write(s,'(L1)') isnan(0.) + if (s /= 'F') call abort + + write(s,'(L1)') isnan(exp(huge(0.))) + if (s /= 'F') call abort + + write(s,'(L1)') isnan(0./0.) + if (s /= 'T') call abort +end |