From 52c512bc56ed99e9ddc3efe98e3433016016c69a Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Mon, 5 Apr 2021 10:03:12 -0300 Subject: [PATCH] ia64: Fix build after 9acda61d94ac The j0f/j1f/y0f/y1f now uses __inv_pio4 and call roundf (which turns to __roundf on ia64). --- sysdeps/ia64/fpu/s_roundf.S | 6 +++--- sysdeps/ia64/fpu/s_sincosf_data.c | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 sysdeps/ia64/fpu/s_sincosf_data.c diff --git a/sysdeps/ia64/fpu/s_roundf.S b/sysdeps/ia64/fpu/s_roundf.S index 8de5954..10fa49b 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 1cc8931..0000000 --- a/sysdeps/ia64/fpu/s_sincosf_data.c +++ /dev/null @@ -1 +0,0 @@ -/* Not needed. */ -- 2.7.4