summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/rint.S
blob: f56ab1f934843f63e3b1a5e6024e09b01a6b432e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.text

.global rintf,rint,rintl
	.type	 rintf,@function
	.type	 rint,@function
	.type	 rintl,@function
rintf:
	flds 4(%esp)
	frndint
	ret
rint:
	fldl 4(%esp)
	frndint
	ret
rintl:
	fldt 4(%esp)
	frndint
	ret

.Lende:
.size    rint,.Lende-rint
.size    rintl,.Lende-rintl
.size    rintf,.Lende-rintf