summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-02-01 09:28:53 +0000
committerJakub Jelinek <jakub@redhat.com>2006-02-01 09:28:53 +0000
commitf13d04bae973f9a35029301b2a45893f6c8006a1 (patch)
treee6ed806585b009a596786e68feab486571fa6875
parent856d9bbc0f0e12c3801b8607dad1c2003c339240 (diff)
* sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Fix a typo.
* sysdeps/s390/fpu/libm-test-ulps: Remove llrint ulps.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/ieee754/ldbl-128/s_llrintl.c4
-rw-r--r--sysdeps/s390/fpu/libm-test-ulps56
3 files changed, 7 insertions, 58 deletions
diff --git a/ChangeLog b/ChangeLog
index b66e872b6e..7d6f319984 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-01 Jakub Jelinek <jakub@redhat.com>
+
+ * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Fix a typo.
+ * sysdeps/s390/fpu/libm-test-ulps: Remove llrint ulps.
+
2006-01-31 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
diff --git a/sysdeps/ieee754/ldbl-128/s_llrintl.c b/sysdeps/ieee754/ldbl-128/s_llrintl.c
index d6899e8500..ee66454e2f 100644
--- a/sysdeps/ieee754/ldbl-128/s_llrintl.c
+++ b/sysdeps/ieee754/ldbl-128/s_llrintl.c
@@ -1,6 +1,6 @@
/* Round argument to nearest integral value according to current rounding
direction.
- Copyright (C) 1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1999, 2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997 and
Jakub Jelinek <jj@ultra.linux.cz>, 1999.
@@ -52,7 +52,7 @@ __llrintl (long double x)
return 0;
w = two112[sx] + x;
t = w - two112[sx];
- GET_LDOUBLE_WORDS64 (i0, i1, x);
+ GET_LDOUBLE_WORDS64 (i0, i1, t);
j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
i0 &= 0x0000ffffffffffffLL;
i0 |= 0x0001000000000000LL;
diff --git a/sysdeps/s390/fpu/libm-test-ulps b/sysdeps/s390/fpu/libm-test-ulps
index a84b71f54a..7fbed3caf9 100644
--- a/sysdeps/s390/fpu/libm-test-ulps
+++ b/sysdeps/s390/fpu/libm-test-ulps
@@ -691,62 +691,6 @@ ifloat: 2
ildouble: 1
ldouble: 1
-# llrint
-Test "llrint (-4503599627370495.5) == -4503599627370496LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-4503599627370496.75) == -4503599627370497LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-4503599627370497.5) == -4503599627370498LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-72057594037927935.5) == -72057594037927936LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-72057594037927936.75) == -72057594037927937LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-72057594037927937.5) == -72057594037927938LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-9007199254740991.5) == -9007199254740992LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-9007199254740992.75) == -9007199254740993LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (-9007199254740993.5) == -9007199254740994LL":
-ildouble: 1
-ldouble: 1
-Test "llrint (4503599627370495.5) == 4503599627370496LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (4503599627370496.75) == 4503599627370497LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (4503599627370497.5) == 4503599627370498LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (72057594037927935.5) == 72057594037927936LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (72057594037927936.75) == 72057594037927937LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (72057594037927937.5) == 72057594037927938LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (9007199254740991.5) == 9007199254740992LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (9007199254740992.75) == 9007199254740993LL":
-ildouble: -1
-ldouble: -1
-Test "llrint (9007199254740993.5) == 9007199254740994LL":
-ildouble: -1
-ldouble: -1
-
# log10
Test "log10 (0.75) == -0.124938736608299953132449886193870744":
double: 1