summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2013-08-18 12:41:29 +0000
committerSzabolcs Nagy <nsz@port70.net>2013-08-18 16:27:20 +0000
commitbaba2630c9cf778b41e218dfa980fcfdbec808e6 (patch)
tree9f7cadf2e7c26dec158faa8e3be83ee26207e04c
parentebc10fa17634a6ddb87a3aedd71b7d9617d12c19 (diff)
downloadmusl-baba2630c9cf778b41e218dfa980fcfdbec808e6.tar.gz
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.h1
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)