File:  [DVB] / dietlibc / i386 / asin.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 asinf,asin,asinl	# ,__asin
	.type	 asinf,@function
	.type	 asin,@function
	.type	 asinl,@function
#	.type	 __asin,@function
asinf:
	flds 4(%esp)
	jmp __asin
asinl:
	fldt 4(%esp)
	jmp __asin
asin:
	fldl 4(%esp)
__asin:
	fld	%st
	fmul	%st
	fld1
	fsubp
	fsqrt
	fpatan
	ret

.ende:
.size    asin,.ende-asin
.size    asinf,.ende-asinf
.size    asinl,.ende-asinl

LinuxTV legacy CVS <linuxtv.org/cvs>