File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libc/src/__support/macros/properties Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 25
25
// TODO: Replace with LIBC_LONG_DOUBLE_IS_X86_BIN80
26
26
#define SPECIAL_X86_LONG_DOUBLE
27
27
#elif (LDBL_MANT_DIG == 113)
28
- #define LIBC_LONG_DOUBLE_IS_IEEE754_BIN128
28
+ #define LIBC_LONG_DOUBLE_IS_FLOAT128
29
29
#endif
30
30
31
31
// float16 support.
@@ -69,13 +69,13 @@ using float16 = _Float16;
69
69
using float128 = _Float128;
70
70
#elif defined(LIBC_COMPILER_HAS_FLOAT128_EXTENSION)
71
71
using float128 = __float128;
72
- #elif defined(LIBC_LONG_DOUBLE_IS_IEEE754_BIN128 )
72
+ #elif defined(LIBC_LONG_DOUBLE_IS_FLOAT128 )
73
73
using float128 = long double ;
74
74
#endif
75
75
76
76
#if defined(LIBC_COMPILER_HAS_C23_FLOAT128) || \
77
77
defined (LIBC_COMPILER_HAS_FLOAT128_EXTENSION) || \
78
- defined(LIBC_LONG_DOUBLE_IS_IEEE754_BIN128 )
78
+ defined(LIBC_LONG_DOUBLE_IS_FLOAT128 )
79
79
// TODO: Replace with LIBC_HAS_FLOAT128
80
80
#define LIBC_COMPILER_HAS_FLOAT128
81
81
#endif
You can’t perform that action at this time.
0 commit comments