| * 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(floorl) |
| .def __MINGW_USYMBOL(floorl); .scl 2; .type 32; .endef |
| fstcw 8(%rsp) /* 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 (%rsp) /* load modified control word */ |
| fldcw 8(%rsp) /* restore original control word */ |
| 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 */ |