repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
lib
/
libm
/
arch
/
i387
/
s_tanf.S
blob
a6d6c5b35fc261e249ae174ec0d8d26c269de7d3
1
/*
2
* Written by J.T. Conklin <jtc@NetBSD.org>.
3
* Public domain.
4
*/
5
6
#include <machine/asm.h>
7
8
#include "abi.h"
9
10
RCSID("$NetBSD: s_tanf.S,v 1.5 2003/07/26 19:25:04 salo Exp $")
11
12
/* A float's domain isn't large enough to require argument reduction. */
13
ENTRY(tanf)
14
XMM_ONE_ARG_FLOAT_PROLOGUE
15
flds ARG_FLOAT_ONE
16
fptan
17
fstp %st(0)
18
XMM_FLOAT_EPILOGUE
19
ret