diff options
author | joseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2007-02-05 17:59:45 +0000 |
---|---|---|
committer | joseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2007-02-05 17:59:45 +0000 |
commit | fbeabbdc554f256444af02146bec6b76541c75a8 (patch) | |
tree | 1b92c9867abb92a68a34073eda060e66750f032c /libc/sysdeps/ieee754 | |
parent | 1e1eaa2d6be863fbfa1526a0b42e7fb0f1b042e0 (diff) | |
download | eglibc2-fbeabbdc554f256444af02146bec6b76541c75a8.tar.gz |
Merge changes between r1192 and r1382 from /fsf/trunk.
git-svn-id: svn://svn.eglibc.org/trunk@1383 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/sysdeps/ieee754')
-rw-r--r-- | libc/sysdeps/ieee754/ldbl-128ibm/s_ceill.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/ieee754/ldbl-128ibm/s_copysignl.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/ieee754/ldbl-128ibm/s_fabsl.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/ieee754/ldbl-128ibm/s_floorl.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/ieee754/ldbl-128ibm/s_roundl.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/ieee754/ldbl-128ibm/s_truncl.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/libc/sysdeps/ieee754/ldbl-128ibm/s_ceill.c b/libc/sysdeps/ieee754/ldbl-128ibm/s_ceill.c index cf531969e..6252e9140 100644 --- a/libc/sysdeps/ieee754/ldbl-128ibm/s_ceill.c +++ b/libc/sysdeps/ieee754/ldbl-128ibm/s_ceill.c @@ -1,6 +1,6 @@ /* Ceil (round to +inf) long double floating-point values. IBM extended format long double version. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libc/sysdeps/ieee754/ldbl-128ibm/s_copysignl.c b/libc/sysdeps/ieee754/ldbl-128ibm/s_copysignl.c index d4c02d2e7..1a198c16e 100644 --- a/libc/sysdeps/ieee754/ldbl-128ibm/s_copysignl.c +++ b/libc/sysdeps/ieee754/ldbl-128ibm/s_copysignl.c @@ -34,7 +34,7 @@ static char rcsid[] = "$NetBSD: $"; long double x,y; #endif { - if( signbit(x) != signbit(y) ) + if (signbit (x) != signbit (y)) x = -x; return x; } diff --git a/libc/sysdeps/ieee754/ldbl-128ibm/s_fabsl.c b/libc/sysdeps/ieee754/ldbl-128ibm/s_fabsl.c index 63b232855..89eb20510 100644 --- a/libc/sysdeps/ieee754/ldbl-128ibm/s_fabsl.c +++ b/libc/sysdeps/ieee754/ldbl-128ibm/s_fabsl.c @@ -38,6 +38,6 @@ static char rcsid[] = "$NetBSD: $"; lx = lx ^ ( hx & 0x8000000000000000LL ); hx = hx & 0x7fffffffffffffffLL; SET_LDOUBLE_WORDS64(x,hx,lx); - return x; + return x; } long_double_symbol (libm, __fabsl, fabsl); diff --git a/libc/sysdeps/ieee754/ldbl-128ibm/s_floorl.c b/libc/sysdeps/ieee754/ldbl-128ibm/s_floorl.c index 7e7510313..eff757240 100644 --- a/libc/sysdeps/ieee754/ldbl-128ibm/s_floorl.c +++ b/libc/sysdeps/ieee754/ldbl-128ibm/s_floorl.c @@ -1,6 +1,6 @@ /* Round to int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libc/sysdeps/ieee754/ldbl-128ibm/s_roundl.c b/libc/sysdeps/ieee754/ldbl-128ibm/s_roundl.c index 88813e1d7..d633bfa4c 100644 --- a/libc/sysdeps/ieee754/ldbl-128ibm/s_roundl.c +++ b/libc/sysdeps/ieee754/ldbl-128ibm/s_roundl.c @@ -1,6 +1,6 @@ /* Round to int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libc/sysdeps/ieee754/ldbl-128ibm/s_truncl.c b/libc/sysdeps/ieee754/ldbl-128ibm/s_truncl.c index 73efb8d63..ceace0d43 100644 --- a/libc/sysdeps/ieee754/ldbl-128ibm/s_truncl.c +++ b/libc/sysdeps/ieee754/ldbl-128ibm/s_truncl.c @@ -1,6 +1,6 @@ /* Truncate (toward zero) long double floating-point values. IBM extended format long double version. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or |