| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| .globl __MINGW_USYMBOL(floorf) |
| .def __MINGW_USYMBOL(floorf); .scl 2; .type 32; .endef |
| .seh_proc __MINGW_USYMBOL(floorf) |
| .def __MINGW_USYMBOL(floor); .scl 2; .type 32; .endef |
| fstcw 4(%esp) /* store fpu control word */ |
| /* We use here %edx although only the low 1 bits are defined. |
| But none of the operations should care and they are faster |
| than the 16 bit operations. */ |
| movl $0x400,%edx /* round towards -oo */ |
| fldcw (%esp) /* load modified control word */ |
| fldcw 4(%esp) /* restore original control word */ |