repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
(_IO_init): Set _vtable_offset to 0.
[glibc/history.git]
/
sysdeps
/
libm-i387
/
e_asinl.S
blob
3919fbcf58f202a48d9f75f4da7caf5d96078a2e
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Public domain.
4
*
5
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
6
*/
7
8
#include <machine/asm.h>
9
10
RCSID("$NetBSD: $")
11
12
/* asinl = atanl (x / sqrtl(1 - x^2)) */
13
ENTRY(__ieee754_asinl)
14
fldt 4(%esp) /* x */
15
fld %st
16
fmul %st(0) /* x^2 */
17
fld1
18
fsubp /* 1 - x^2 */
19
fsqrt /* sqrt (1 - x^2) */
20
fpatan
21
ret
22
END (__ieee754_asinl)