diff options
author | Roland McGrath <roland@gnu.org> | 2006-02-01 19:42:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-02-01 19:42:43 +0000 |
commit | bd3a1a105944dc7d48873a5edd49c34dda9a8fd3 (patch) | |
tree | 26d3cb5e050c7ef63d20b3e68430b0990f08d715 /sysdeps/ieee754 | |
parent | 106bfa74ce81419b4034b021da44d6aae78785af (diff) | |
download | glibc-bd3a1a105944dc7d48873a5edd49c34dda9a8fd3.tar.gz glibc-bd3a1a105944dc7d48873a5edd49c34dda9a8fd3.tar.xz glibc-bd3a1a105944dc7d48873a5edd49c34dda9a8fd3.zip |
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.
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_llrintl.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |