Fix typo in macro name

This commit is contained in:
Matt Borland
2023-06-21 13:02:01 +02:00
parent 56e4bc799c
commit 554bc47ad0

View File

@@ -599,8 +599,8 @@ static inline struct floating_decimal_128 long_double_to_fd128(long double d) no
#if LDBL_MANT_DIG == 113 // binary128 (e.g. ARM, S390X)
return generic_binary_to_decimal(bits, 112, 15, true);
#elif LLDBL_MANT_DIG == 106 // ibm128 (e.g. PowerPC)
return generic_binary_to_decimal(bits, 106, 11, true);
#elif LDBL_MANT_DIG == 106 // ibm128 (e.g. PowerPC)
return generic_binary_to_decimal(bits, 105, 11, true);
#endif
}