aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/riscv/rvd/e_sqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/riscv/rvd/e_sqrt.c')
-rw-r--r--sysdeps/riscv/rvd/e_sqrt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/riscv/rvd/e_sqrt.c b/sysdeps/riscv/rvd/e_sqrt.c
index 110d6f63a6..7defcb5785 100644
--- a/sysdeps/riscv/rvd/e_sqrt.c
+++ b/sysdeps/riscv/rvd/e_sqrt.c
@@ -17,6 +17,7 @@
<https://www.gnu.org/licenses/>. */
#include <math.h>
+#include <libm-alias-finite.h>
double
__ieee754_sqrt (double x)
@@ -24,4 +25,4 @@ __ieee754_sqrt (double x)
asm ("fsqrt.d %0, %1" : "=f" (x) : "f" (x));
return x;
}
-strong_alias (__ieee754_sqrt, __sqrt_finite)
+libm_alias_finite (__ieee754_sqrt, __sqrt)