diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-08-18 12:41:29 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-08-18 16:27:20 +0000 |
commit | baba2630c9cf778b41e218dfa980fcfdbec808e6 (patch) | |
tree | 9f7cadf2e7c26dec158faa8e3be83ee26207e04c | |
parent | ebc10fa17634a6ddb87a3aedd71b7d9617d12c19 (diff) | |
download | musl-baba2630c9cf778b41e218dfa980fcfdbec808e6.tar.gz musl-baba2630c9cf778b41e218dfa980fcfdbec808e6.tar.bz2 musl-baba2630c9cf778b41e218dfa980fcfdbec808e6.tar.xz musl-baba2630c9cf778b41e218dfa980fcfdbec808e6.zip |
remove the __mxcsr member from fenv_t on i386 to follow the glibc abi
in the previous commit sse fenv support was added, but there is no
need to save mxcsr (sse fenv register) so fix the abi incompatibility
with glibc.
-rw-r--r-- | arch/i386/bits/fenv.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/i386/bits/fenv.h b/arch/i386/bits/fenv.h index 24df0417..4430009e 100644 --- a/arch/i386/bits/fenv.h +++ b/arch/i386/bits/fenv.h @@ -28,7 +28,6 @@ typedef struct { unsigned int __data_offset; unsigned short __data_selector; unsigned short __unused5; - unsigned int __mxcsr; } fenv_t; #define FE_DFL_ENV ((const fenv_t *) -1) |