mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
175 B
15 lines
175 B
.global log1p
|
|
.type log1p,@function
|
|
log1p:
|
|
mov 8(%esp),%eax
|
|
fldln2
|
|
and $0x7fffffff,%eax
|
|
fldl 4(%esp)
|
|
cmp $0x3fd28f00,%eax
|
|
ja 1f
|
|
fyl2xp1
|
|
ret
|
|
1: fld1
|
|
faddp
|
|
fyl2x
|
|
ret
|
|
|