comparison src/build-msvctools/math/fmaf.S @ 3061:f8299bb6c872

Initial support for native MSVC compilation. * add MSVC support files: compiler wrappers and support libraries * adapt libiconv to work with MSVC * adapt gettext to work with MSVC
author Michael Goffioul <michael.goffioul@gmail.com>
date Mon, 17 Jun 2013 22:43:11 -0400
parents
children
comparison
equal deleted inserted replaced
3060:cbdf4575016d 3061:f8299bb6c872
1 .file "fmaf.S"
2 .text
3 .align 2
4 .p2align 4,,15
5 .globl _fmaf
6 .def _fmaf; .scl 2; .type 32; .endef
7 _fmaf:
8 flds 4(%esp)
9 fmuls 8(%esp)
10 flds 12(%esp)
11 faddp
12 ret