File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
libc/include/llvm-libc-macros Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 18
18
#define INFINITY __builtin_inf()
19
19
#define NAN __builtin_nanf("")
20
20
21
- #define FP_ILOGB0 (-__INT_MAX__ - 1)
22
- #define FP_ILOGBNAN __INT_MAX__
21
+ #define FP_ILOGB0 (-INT_MAX - 1)
22
+ #define FP_ILOGBNAN INT_MAX
23
23
24
- #define FP_LLOGB0 (-__LONG_MAX__ - 1)
25
- #define FP_LLOGBNAN __LONG_MAX__
24
+ #define FP_LLOGB0 (-LONG_MAX - 1)
25
+ #define FP_LLOGBNAN LONG_MAX
26
26
27
27
#define isfinite (x ) __builtin_isfinite(x)
28
28
#define isinf (x ) __builtin_isinf(x)
29
29
#define isnan (x ) __builtin_isnan(x)
30
30
31
31
#ifdef __FAST_MATH__
32
32
#define math_errhandling 0
33
- #elif defined __NO_MATH_ERRNO__
33
+ #elif defined( __NO_MATH_ERRNO__ )
34
34
#define math_errhandling (MATH_ERREXCEPT)
35
35
#else
36
36
#define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
You can’t perform that action at this time.
0 commit comments