File:  [DVB] / dietlibc / i386 / acos.S
Revision 1.2: download - view: text, annotated - select for diffs
Fri Oct 4 20:39:42 2002 UTC (21 years, 8 months ago) by fefe
Branches: MAIN
CVS tags: finnland_test_200301, branch_rc14_fieldtest_finnland, branch_rc13_fieldtest_finnland, branch_rc12_fieldtest_finnland, branch_rc10_fieldtest_finnland, RELEASE_finnland_200301_1, RC12_FIELDTEST_FINNLAND, RC10_FIELDTEST_FINNLAND, HEAD
fix i386 libm


.text

.global acosf,acos,acosl	# ,__acos
	.type	 acosf,@function
	.type	 acos,@function
	.type	 acosl,@function
#	.type	 __acos,@function
acosf:
	flds 4(%esp)
	jmp __acos
acosl:
	fldt 4(%esp)
	jmp __acos
acos:
	fldl 4(%esp)
__acos:
	fld	%st
	fmul	%st
	fld1
	fsubp
	fsqrt
	fxch	%st(1)
	fpatan
	ret

.ende:
.size    acos,.ende-acos
.size    acosf,.ende-acosf
.size    acosl,.ende-acosl

LinuxTV legacy CVS <linuxtv.org/cvs>