mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 04:05:05 +00:00
support FLT_EVAL_METHOD changing on x86 with gcc -msse2 -mfpmath=sse
if the compiler provides a value, use it; otherwise fallback to the platform default (2).
This commit is contained in:
parent
2b87a5db82
commit
a1b442335d
@ -1,5 +1,9 @@
|
||||
#define FLT_ROUNDS 1
|
||||
#ifdef __FLT_EVAL_METHOD__
|
||||
#define FLT_EVAL_METHOD __FLT_EVAL_METHOD__
|
||||
#else
|
||||
#define FLT_EVAL_METHOD 2
|
||||
#endif
|
||||
|
||||
#define LDBL_MIN 3.3621031431120935063e-4932L
|
||||
#define LDBL_MAX 1.1897314953572317650e+4932L
|
||||
|
Loading…
Reference in New Issue
Block a user