[libc] Fix typo in uint128 type for PPC printf handling (#138157)

This commit is contained in:
Joseph Huber
2025-05-01 10:52:41 -05:00
committed by GitHub
parent e5f09aac48
commit 927cdd2c73

View File

@@ -58,7 +58,7 @@ struct FormatSection {
// Needs to be large enough to hold a long double. Special case handling for
// the PowerPC double double type because it has no FPBits interface.
#ifdef LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE
Uint128 conv_val_raw;
UInt128 conv_val_raw;
#else
fputil::FPBits<long double>::StorageType conv_val_raw;
#endif // LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE