summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/atan.S
blob: 76513f928e4861e40af56f8ed09e0f13881189c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

.text

.global atanf,atan,atanl
	.type	 atanf,@function
	.type	 atan,@function
	.type	 atanl,@function
atanf:
	flds 4(%esp)
	fld1
	fpatan
	ret
atan:
	fldl 4(%esp)
	fld1
	fpatan
	ret
atanl:
	fldt 4(%esp)
	fld1
	fpatan
	ret

.ende:
.size    atan,.ende-atan
.size    atanf,.ende-atanf
.size    atanl,.ende-atanl