summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/nan_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/nan_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/nan_2.f90108
1 files changed, 108 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/nan_2.f90 b/gcc/testsuite/gfortran.dg/nan_2.f90
new file mode 100644
index 000000000..5c821d651
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/nan_2.f90
@@ -0,0 +1,108 @@
+! { dg-do run }
+! { dg-options "-fno-range-check -pedantic" }
+! { dg-add-options ieee }
+! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } }
+!
+! PR fortran/34333
+!
+! Check that (NaN /= NaN) == .TRUE.
+! and some other NaN options.
+!
+! Contrary to nan_1.f90, PARAMETERs are used and thus
+! the front end resolves the min, max and binary operators at
+! compile time.
+!
+
+module aux2
+ interface isinf
+ module procedure isinf_r
+ module procedure isinf_d
+ end interface isinf
+contains
+ pure function isinf_r(x) result (isinf)
+ logical :: isinf
+ real, intent(in) :: x
+
+ isinf = (x > huge(x)) .or. (x < -huge(x))
+ end function isinf_r
+
+ pure function isinf_d(x) result (isinf)
+ logical :: isinf
+ double precision, intent(in) :: x
+
+ isinf = (x > huge(x)) .or. (x < -huge(x))
+ end function isinf_d
+end module aux2
+
+program test
+ use aux2
+ implicit none
+ real, parameter :: nan = 0.0/0.0, large = huge(large), inf = 1.0/0.0
+
+ if (nan == nan .or. nan > nan .or. nan < nan .or. nan >= nan &
+ .or. nan <= nan) call abort
+ if (isnan (2.d0) .or. (.not. isnan(nan)) .or. &
+ (.not. isnan(real(nan,kind=kind(2.d0))))) call abort
+
+ ! Create an INF and check it
+ if (isinf(nan) .or. isinf(large) .or. .not. isinf(inf)) call abort
+ if (isinf(-nan) .or. isinf(-large) .or. .not. isinf(-inf)) call abort
+
+ ! Check that MIN and MAX behave correctly
+ if (max(2.0, nan) /= 2.0) call abort
+ if (min(2.0, nan) /= 2.0) call abort
+ if (max(nan, 2.0) /= 2.0) call abort
+ if (min(nan, 2.0) /= 2.0) call abort
+
+ if (max(2.d0, nan) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (min(2.d0, nan) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (max(nan, 2.d0) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (min(nan, 2.d0) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+
+ if (.not. isnan(min(nan,nan))) call abort
+ if (.not. isnan(max(nan,nan))) call abort
+
+ ! Same thing, with more arguments
+
+ if (max(3.0, 2.0, nan) /= 3.0) call abort
+ if (min(3.0, 2.0, nan) /= 2.0) call abort
+ if (max(3.0, nan, 2.0) /= 3.0) call abort
+ if (min(3.0, nan, 2.0) /= 2.0) call abort
+ if (max(nan, 3.0, 2.0) /= 3.0) call abort
+ if (min(nan, 3.0, 2.0) /= 2.0) call abort
+
+ if (max(3.d0, 2.d0, nan) /= 3.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (min(3.d0, 2.d0, nan) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (max(3.d0, nan, 2.d0) /= 3.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (min(3.d0, nan, 2.d0) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (max(nan, 3.d0, 2.d0) /= 3.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+ if (min(nan, 3.d0, 2.d0) /= 2.d0) call abort ! { dg-warning "Extension: Different type kinds" }
+
+ if (.not. isnan(min(nan,nan,nan))) call abort
+ if (.not. isnan(max(nan,nan,nan))) call abort
+ if (.not. isnan(min(nan,nan,nan,nan))) call abort
+ if (.not. isnan(max(nan,nan,nan,nan))) call abort
+ if (.not. isnan(min(nan,nan,nan,nan,nan))) call abort
+ if (.not. isnan(max(nan,nan,nan,nan,nan))) call abort
+
+ ! Large values, INF and NaNs
+ if (.not. isinf(max(large, inf))) call abort
+ if (isinf(min(large, inf))) call abort
+ if (.not. isinf(max(nan, large, inf))) call abort
+ if (isinf(min(nan, large, inf))) call abort
+ if (.not. isinf(max(large, nan, inf))) call abort
+ if (isinf(min(large, nan, inf))) call abort
+ if (.not. isinf(max(large, inf, nan))) call abort
+ if (isinf(min(large, inf, nan))) call abort
+
+ if (.not. isinf(min(-large, -inf))) call abort
+ if (isinf(max(-large, -inf))) call abort
+ if (.not. isinf(min(nan, -large, -inf))) call abort
+ if (isinf(max(nan, -large, -inf))) call abort
+ if (.not. isinf(min(-large, nan, -inf))) call abort
+ if (isinf(max(-large, nan, -inf))) call abort
+ if (.not. isinf(min(-large, -inf, nan))) call abort
+ if (isinf(max(-large, -inf, nan))) call abort
+
+end program test
+! { dg-final { cleanup-modules "aux2" } }