summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-08-07 23:06:01 +0000
committerUlrich Drepper <drepper@redhat.com>2008-08-07 23:06:01 +0000
commit48b9466105cf4bf7012b90356ae097573a23fc5c (patch)
treef000ef82a704291a183b06e17e21682a0cd3681f /sysdeps
parent9c0cb1504e3883e788da79375e4fd8e3f424cddf (diff)
[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>.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h b/sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h
index 4f173912ed..4fa4bcaf16 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))
{