diff options
author | Joseph Myers <josmyers@redhat.com> | 2024-12-09 23:01:29 +0000 |
---|---|---|
committer | Joseph Myers <josmyers@redhat.com> | 2024-12-09 23:01:29 +0000 |
commit | 28d102d15c6af7f80cb1077e098e020476d26d00 (patch) | |
tree | ea46b5497d8ed73dab0ada5d3297e85410b5b097 /sysdeps/i386/i686/fpu/multiarch | |
parent | be13e467641cda4bd147ef3ef3afe9e4c6a35e1d (diff) | |
download | glibc-28d102d15c6af7f80cb1077e098e020476d26d00.zip glibc-28d102d15c6af7f80cb1077e098e020476d26d00.tar.gz glibc-28d102d15c6af7f80cb1077e098e020476d26d00.tar.bz2 |
Implement C23 acospi
C23 adds various <math.h> function families originally defined in TS
18661-4. Add the acospi functions (acos(x)/pi).
Tested for x86_64 and x86, and with build-many-glibcs.py.
Diffstat (limited to 'sysdeps/i386/i686/fpu/multiarch')
-rw-r--r-- | sysdeps/i386/i686/fpu/multiarch/libm-test-ulps | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sysdeps/i386/i686/fpu/multiarch/libm-test-ulps b/sysdeps/i386/i686/fpu/multiarch/libm-test-ulps index 225e8f9..3098bfb 100644 --- a/sysdeps/i386/i686/fpu/multiarch/libm-test-ulps +++ b/sysdeps/i386/i686/fpu/multiarch/libm-test-ulps @@ -39,6 +39,30 @@ double: 1 float128: 3 ldouble: 3 +Function: "acospi": +double: 1 +float: 1 +float128: 1 +ldouble: 1 + +Function: "acospi_downward": +double: 1 +float: 1 +float128: 1 +ldouble: 3 + +Function: "acospi_towardzero": +double: 1 +float: 1 +float128: 1 +ldouble: 3 + +Function: "acospi_upward": +double: 1 +float: 1 +float128: 2 +ldouble: 2 + Function: "asin": double: 1 float128: 1 |