diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-04-05 10:03:12 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-04-05 10:07:42 -0300 |
commit | 52c512bc56ed99e9ddc3efe98e3433016016c69a (patch) | |
tree | 85ed57177263926a528a8870751d22563e8ce18c /sysdeps | |
parent | 1d64e962ab3982eb39039de2faba76944d1baf7f (diff) | |
download | glibc-52c512bc56ed99e9ddc3efe98e3433016016c69a.tar glibc-52c512bc56ed99e9ddc3efe98e3433016016c69a.tar.gz glibc-52c512bc56ed99e9ddc3efe98e3433016016c69a.tar.bz2 glibc-52c512bc56ed99e9ddc3efe98e3433016016c69a.zip |
ia64: Fix build after 9acda61d94ac
The j0f/j1f/y0f/y1f now uses __inv_pio4 and call roundf (which turns
to __roundf on ia64).
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ia64/fpu/s_roundf.S | 6 | ||||
-rw-r--r-- | sysdeps/ia64/fpu/s_sincosf_data.c | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/ia64/fpu/s_roundf.S b/sysdeps/ia64/fpu/s_roundf.S index 8de595472d..10fa49b7be 100644 --- a/sysdeps/ia64/fpu/s_roundf.S +++ b/sysdeps/ia64/fpu/s_roundf.S @@ -105,7 +105,7 @@ fRem = f13 .section .text -GLOBAL_LIBM_ENTRY(roundf) +GLOBAL_LIBM_ENTRY(__roundf) { .mfi getf.exp rSignexp = f8 // Get signexp, recompute if unorm @@ -230,5 +230,5 @@ ROUND_UNORM: } ;; -GLOBAL_LIBM_END(roundf) -libm_alias_float_other (round, round) +GLOBAL_LIBM_END(__roundf) +libm_alias_float (__round, round) diff --git a/sysdeps/ia64/fpu/s_sincosf_data.c b/sysdeps/ia64/fpu/s_sincosf_data.c deleted file mode 100644 index 1cc8931700..0000000000 --- a/sysdeps/ia64/fpu/s_sincosf_data.c +++ /dev/null @@ -1 +0,0 @@ -/* Not needed. */ |