mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 16:21:06 +00:00
[BZ #6824]
2008-08-07 Ulrich Drepper <drepper@redhat.com> [BZ #6824] * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct macro to detect use of 128 bit long double. Patch by Ryan S. Arnold <rsa@us.ibm.com>.
This commit is contained in:
parent
9c0cb1504e
commit
48b9466105
@ -1,3 +1,10 @@
|
|||||||
|
2008-08-07 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #6824]
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct
|
||||||
|
macro to detect use of 128 bit long double.
|
||||||
|
Patch by Ryan S. Arnold <rsa@us.ibm.com>.
|
||||||
|
|
||||||
2008-08-05 Ulrich Drepper <drepper@redhat.com>
|
2008-08-05 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
|
* scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
|
||||||
|
@ -72,7 +72,7 @@ __NTH (__signbit (double __x))
|
|||||||
__extension__ union { double __d; int __i[2]; } __u = { __d: __x };
|
__extension__ union { double __d; int __i[2]; } __u = { __d: __x };
|
||||||
return __u.__i[0] < 0;
|
return __u.__i[0] < 0;
|
||||||
}
|
}
|
||||||
# ifdef __LONGDOUBLE128
|
# ifdef __LONG_DOUBLE_128__
|
||||||
__MATH_INLINE int
|
__MATH_INLINE int
|
||||||
__NTH (__signbitl (long double __x))
|
__NTH (__signbitl (long double __x))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user