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

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