summaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-08-03 21:26:10 +0000
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-08-03 21:26:10 +0000
commit94f548c244426f45bab1ae19d3359aa2b651dce0 (patch)
treeb3c3360111641d52b502bddd36c0a4ce24d565cf /gcc/testsuite
parent8db6f5454c392b098080e297de645be106d621af (diff)
downloadgcc-94f548c244426f45bab1ae19d3359aa2b651dce0.tar.gz
re PR fortran/31202 (Incorrect rounding generated for NINT)
PR fortran/31202 * f95-lang.c (gfc_init_builtin_functions): Defin builtins for lround{f,,l} and llround{f,,l}. * trans-intrinsic.c (build_fix_expr): Generate calls to the {l,}round{f,,l} functions. * intrinsics/c99_functions.c (roundl,lroundf,lround,lroundl, llroundf,llround,llroundl): New functions. * c99_protos.h (roundl,lroundf,lround,lroundl,llroundf,llround, llroundl): New prototypes. * configure.ac: Check for lroundf, lround, lroundl, llroundf, llround and llroundl. * configure: Regenerate. * Makefile.in: Regenerate. * config.h.in: Regenerate. * gfortran.dg/nint_2.f90: New test. From-SVN: r127185
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/nint_2.f9051
2 files changed, 56 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 892eb9c6a99..e548278c3be 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-03 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
+
+ PR fortran/31202
+ * gfortran.dg/nint_2.f90: New test.
+
2007-08-03 Nathan Froyd <froydnj@codesourcery.com>
* gcc.dg/tree-ssa/loop-1.c: Skip on powerpc targets if -mlongcall.
diff --git a/gcc/testsuite/gfortran.dg/nint_2.f90 b/gcc/testsuite/gfortran.dg/nint_2.f90
new file mode 100644
index 00000000000..b993cb45140
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/nint_2.f90
@@ -0,0 +1,51 @@
+! Test that NINT gives right results even in corner cases
+!
+! PR 31202
+! http://gcc.gnu.org/ml/fortran/2005-04/msg00139.html
+!
+! { dg-do run }
+ real(kind=8) :: a
+ integer(kind=8) :: i1, i2
+ real :: b
+ integer :: j1, j2
+
+ a = nearest(0.5_8,-1.0_8)
+ i2 = nint(nearest(0.5_8,-1.0_8))
+ i1 = nint(a)
+ if (i1 /= 0 .or. i2 /= 0) call abort
+
+ a = 0.5_8
+ i2 = nint(0.5_8)
+ i1 = nint(a)
+ if (i1 /= 1 .or. i2 /= 1) call abort
+
+ a = nearest(0.5_8,1.0_8)
+ i2 = nint(nearest(0.5_8,1.0_8))
+ i1 = nint(a)
+ if (i1 /= 1 .or. i2 /= 1) call abort
+
+ b = nearest(0.5,-1.0)
+ j2 = nint(nearest(0.5,-1.0))
+ j1 = nint(b)
+ if (j1 /= 0 .or. j2 /= 0) call abort
+
+ b = 0.5
+ j2 = nint(0.5)
+ j1 = nint(b)
+ if (j1 /= 1 .or. j2 /= 1) call abort
+
+ b = nearest(0.5,1.0)
+ j2 = nint(nearest(0.5,1.0))
+ j1 = nint(b)
+ if (j1 /= 1 .or. j2 /= 1) call abort
+
+ a = 4503599627370497.0_8
+ i1 = nint(a,kind=8)
+ i2 = nint(4503599627370497.0_8,kind=8)
+ if (i1 /= i2 .or. i1 /= 4503599627370497_8) call abort
+
+ a = -4503599627370497.0_8
+ i1 = nint(a,kind=8)
+ i2 = nint(-4503599627370497.0_8,kind=8)
+ if (i1 /= i2 .or. i1 /= -4503599627370497_8) call abort
+ end