diff options
author | Chris Metcalf <cmetcalf@ezchip.com> | 2015-11-24 10:09:16 -0500 |
---|---|---|
committer | Chris Metcalf <cmetcalf@ezchip.com> | 2015-11-24 14:09:31 -0500 |
commit | 6a4448afe3806fcf607ab9920d45072eafb2e61f (patch) | |
tree | 5623c94e6518aa40e1d1695d5100eb5046c9f929 /sysdeps/tile | |
parent | 87d0eecece0ecefaca6a7eedb715cb823b3ef780 (diff) | |
download | glibc-6a4448afe3806fcf607ab9920d45072eafb2e61f.tar.gz glibc-6a4448afe3806fcf607ab9920d45072eafb2e61f.tar.xz glibc-6a4448afe3806fcf607ab9920d45072eafb2e61f.zip |
tile: define __NO_LONG_DOUBLE_MATH
This avoids build failures in the tests, and matches what is in bits/mathdef.h. Update the libc and libm abilist files to include __finitel, __isinfl, and __isnanl.
Diffstat (limited to 'sysdeps/tile')
-rw-r--r-- | sysdeps/tile/bits/mathdef.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/tile/bits/mathdef.h b/sysdeps/tile/bits/mathdef.h index afbf77c8c5..8f570aae55 100644 --- a/sysdeps/tile/bits/mathdef.h +++ b/sysdeps/tile/bits/mathdef.h @@ -46,3 +46,9 @@ typedef double double_t; # endif #endif /* ISO C99 */ + +#ifndef __NO_LONG_DOUBLE_MATH +/* Signal that we do not really have a `long double'. This disables the + declaration of all the `long double' function variants. */ +# define __NO_LONG_DOUBLE_MATH 1 +#endif |