aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/riscv/rvf/e_sqrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/riscv/rvf/e_sqrtf.c')
-rw-r--r--sysdeps/riscv/rvf/e_sqrtf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/riscv/rvf/e_sqrtf.c b/sysdeps/riscv/rvf/e_sqrtf.c
index 4d3ce1b668..04835e3e53 100644
--- a/sysdeps/riscv/rvf/e_sqrtf.c
+++ b/sysdeps/riscv/rvf/e_sqrtf.c
@@ -17,6 +17,7 @@
<https://www.gnu.org/licenses/>. */
#include <math.h>
+#include <libm-alias-finite.h>
float
__ieee754_sqrtf (float x)
@@ -24,4 +25,4 @@ __ieee754_sqrtf (float x)
asm ("fsqrt.s %0, %1" : "=f" (x) : "f" (x));
return x;
}
-strong_alias (__ieee754_sqrtf, __sqrtf_finite)
+libm_alias_finite (__ieee754_sqrtf, __sqrtf)