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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/fma.S')
-rw-r--r--winsup/mingw/mingwex/math/fma.S12
1 files changed, 12 insertions, 0 deletions
diff --git a/winsup/mingw/mingwex/math/fma.S b/winsup/mingw/mingwex/math/fma.S
new file mode 100644
index 000000000..d6226653c
--- /dev/null
+++ b/winsup/mingw/mingwex/math/fma.S
@@ -0,0 +1,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