File:  [DVB] / dietlibc / i386 / atan2.S
Revision 1.2: download - view: text, annotated - select for diffs
Sun Mar 30 19:19:52 2003 UTC (21 years, 2 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
more math fixes (Ruby now compiles and works)

.text
.global atan2f,atan2,atan2l
	.type	 atan2f,@function
	.type	 atan2,@function
	.type	 atan2l,@function
atan2f:
	flds 4(%esp)
	flds 8(%esp)
	fpatan
	ret
atan2l:
	fldt 4(%esp)
	fldt 16(%esp)
	fpatan
	ret
atan2:
	fldl 4(%esp)
	fldl 12(%esp)
	fpatan
	ret

.ende:
.size    atan2,.ende-atan2
.size    atan2f,.ende-atan2f
.size    atan2l,.ende-atan2l

LinuxTV legacy CVS <linuxtv.org/cvs>