NetBSD/lib/libm/arch/i387/s_tan.S

29 lines
366 B
ArmAsm
Raw Normal View History

1994-02-16 22:21:10 +03:00
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
1994-02-16 22:21:10 +03:00
*/
#include <machine/asm.h>
1995-05-09 03:55:16 +04:00
RCSID("$NetBSD: s_tan.S,v 1.5 1995/05/09 00:30:00 jtc Exp $")
1994-02-16 22:21:10 +03:00
ENTRY(tan)
fldl 4(%esp)
fptan
fnstsw %ax
andw $0x400,%ax
jnz 1f
fstp %st(0)
ret
1: fldpi
1994-02-16 22:21:10 +03:00
fadd %st(0)
fxch %st(1)
2: fprem1
1994-02-16 22:21:10 +03:00
fstsw %ax
andw $0x400,%ax
jnz 2b
1994-02-16 22:21:10 +03:00
fstp %st(1)
fptan
fstp %st(0)
1994-02-16 22:21:10 +03:00
ret