]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Use correct macro to detect use of 128 bit long double.
authorRyan S. Arnold <rsa@us.ibm.com>
Fri, 24 Jul 2009 15:25:23 +0000 (10:25 -0500)
committerRyan Arnold <ryanarn@etna.rchland.ibm.com>
Fri, 24 Jul 2009 20:10:54 +0000 (15:10 -0500)
commit 48b9466105cf4bf7012b90356ae097573a23fc5c
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Thu Aug 7 23:06:01 2008 +0000

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>.

sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h

index 4f173912edf2d159e15b34800463ceeb7f211911..4fa4bcaf16c15ac80502fdb2f857f37548acc67a 100644 (file)
@@ -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))
 {