From: Szabolcs Nagy Date: Sun, 18 Aug 2013 12:41:29 +0000 (+0000) Subject: remove the __mxcsr member from fenv_t on i386 to follow the glibc abi X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=baba2630c9cf778b41e218dfa980fcfdbec808e6;p=musl 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. --- 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)