mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 12:14:42 +00:00
adjust fallback INFINITY definition for FLT_EVAL_METHOD==2 case
on archs with excess precision, the floating point constant 1e40f may be evaluated such that it does not actually produce an infinity. 1e5000f is sufficiently large to produce an infinity for all supported floating point formats. note that this definition of INFINITY is only used for old or non-GNUC compilers anyway; despite being a portable, conforming definition, it leads to erroneous warnings on many compilers and thus using the builtin is preferred.
This commit is contained in:
parent
f63b8c8c45
commit
a663c93019
@ -16,7 +16,7 @@ extern "C" {
|
||||
#define INFINITY __builtin_inff()
|
||||
#else
|
||||
#define NAN (0.0f/0.0f)
|
||||
#define INFINITY 1e40f
|
||||
#define INFINITY 1e5000f
|
||||
#endif
|
||||
|
||||
#define HUGE_VALF INFINITY
|
||||
|
Loading…
Reference in New Issue
Block a user