mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 11:43:34 +08:00
Support _Float128 in ldbl-96 bits/iscanonical.h.
This patch adds _Float128 support to the ldbl-96 bits/iscanonical.h, as needed for x86_64 / x86 / ia64 support of _Float128. Tested for x86_64 (in conjunction with float128 patches). * sysdeps/ieee754/ldbl-96/bits/iscanonical.h [__HAVE_DISTINCT_FLOAT128] (__iscanonicalf128): New macro.
This commit is contained in:
parent
8d375dafe2
commit
c271ff9469
@ -1,5 +1,8 @@
|
||||
2017-06-22 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/ieee754/ldbl-96/bits/iscanonical.h
|
||||
[__HAVE_DISTINCT_FLOAT128] (__iscanonicalf128): New macro.
|
||||
|
||||
* sysdeps/generic/math-tests.h: Include <bits/floatn.h>.
|
||||
(MATH_TESTS_TG): New macro.
|
||||
(SNAN_TESTS_float128): Likewise.
|
||||
|
@ -24,6 +24,9 @@ extern int __iscanonicall (long double __x)
|
||||
__THROW __attribute__ ((__const__));
|
||||
#define __iscanonicalf(x) ((void) (__typeof (x)) (x), 1)
|
||||
#define __iscanonical(x) ((void) (__typeof (x)) (x), 1)
|
||||
#if __HAVE_DISTINCT_FLOAT128
|
||||
# define __iscanonicalf128(x) ((void) (__typeof (x)) (x), 1)
|
||||
#endif
|
||||
|
||||
/* Return nonzero value if X is canonical. In IEEE interchange binary
|
||||
formats, all values are canonical, but the argument must still be
|
||||
|
Loading…
Reference in New Issue
Block a user