From: Ulrich Drepper Date: Thu, 7 Aug 2008 23:06:01 +0000 (+0000) Subject: [BZ #6824] X-Git-Tag: cvs/fedora-glibc-20080828T1623~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48b9466105cf4bf7012b90356ae097573a23fc5c;p=thirdparty%2Fglibc.git [BZ #6824] 2008-08-07 Ulrich Drepper [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 . --- diff --git a/ChangeLog b/ChangeLog index c94308ff801..cdb739ea6f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-08-07 Ulrich Drepper + + [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 . + 2008-08-05 Ulrich Drepper * scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms. diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h b/sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h index 4f173912edf..4fa4bcaf16c 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h @@ -72,7 +72,7 @@ __NTH (__signbit (double __x)) __extension__ union { double __d; int __i[2]; } __u = { __d: __x }; return __u.__i[0] < 0; } -# ifdef __LONGDOUBLE128 +# ifdef __LONG_DOUBLE_128__ __MATH_INLINE int __NTH (__signbitl (long double __x)) {