| * 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. |
| * IEEE 854 double-extended-precision format |
| * unsigned int mantissa1:32 |
| * unsigned int mantissa0:32 |
| * unsigned int exponent:15 |
| * unsigned int negative:1 |
| * long double _chgsignl(long double x) { |
| * ((unsigned int *) &x)[2] ^= 0x00008000; |
| .globl __MINGW_USYMBOL(_chgsignl) |
| .def __MINGW_USYMBOL(_chgsignl); .scl 2; .type 32; .endef |
| __MINGW_USYMBOL(_chgsignl): |