提交 63893d3f 编写于 作者: R Rich Felker

some initial math asm for armhf (fabs[f] and sqrt[f])

上级 4918c2bb
.text
.global fabs
.type fabs,%function
fabs:
vabs.f64 d0, d0
bx lr
.text
.global fabsf
.type fabsf,%function
fabsf:
vabs.f32 s0, s0
bx lr
.text
.global sqrt
.type sqrt,%function
sqrt:
vsqrt.f64 d0, d0
bx lr
.text
.global sqrtf
.type sqrtf,%function
sqrtf:
vsqrt.f32 s0, s0
bx lr
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册