File:  [DVB] / dietlibc / i386 / sqrt.S
Revision 1.3: 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 sqrtf,sqrt,sqrtl
	.type	 sqrtf,@function
	.type	 sqrt,@function
	.type	 sqrtl,@function
sqrtf:
	flds 4(%esp)
	fsqrt
	ret
sqrt:
	fldl 4(%esp)
	fsqrt
	ret
sqrtl:
	fldt 4(%esp)
	fsqrt
	ret

.ende:
.size    sqrt,.ende-sqrt
.size    sqrtf,.ende-sqrtf
.size    sqrtl,.ende-sqrtl

LinuxTV legacy CVS <linuxtv.org/cvs>