Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fmaf.S « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d64ac2f107800ce906a4a4c04e5f618e12e1b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
	.file	"fmaf.S"
	.text
	.align 2
	.p2align 4,,15
.globl _fmaf
	.def	_fmaf;	.scl	2;	.type	32;	.endef
_fmaf:
	flds	4(%esp)
	fmuls	8(%esp)
	flds	12(%esp)
	faddp
	ret