Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
math
/
arm
/
sqrtf.c
blob: 32693293b49b777667923a5008bbb2145ddd930d [
file
]
#include
<math.h>
#if (__ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)) && !BROKEN_VFP_ASM
float
sqrtf
(
float
x
)
{
__asm__
(
"vsqrt.f32 %0, %1"
:
"=t"
(
x
)
:
"t"
(
x
));
return
x
;
}
#else
#include
"../sqrtf.c"
#endif