Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
math
/
arm
/
fabsf.c
blob: 28153a61e01ade8524c5109d907e9430cd3ae36a [
file
]
#include
<math.h>
#if __ARM_PCS_VFP
float
fabsf
(
float
x
)
{
__asm__
(
"vabs.f32 %0, %1"
:
"=t"
(
x
)
:
"t"
(
x
));
return
x
;
}
#else
#include
"../fabsf.c"
#endif