[libc-commits] [libc] 927cdd2 - [libc] Fix typo in uint128 type for PPC printf handling (#138157)
via libc-commits
libc-commits at lists.llvm.org
Thu May 1 08:52:45 PDT 2025
Author: Joseph Huber
Date: 2025-05-01T10:52:41-05:00
New Revision: 927cdd2c73590ef6475f7e00ce79078d6e8323bd
URL: https://github.com/llvm/llvm-project/commit/927cdd2c73590ef6475f7e00ce79078d6e8323bd
DIFF: https://github.com/llvm/llvm-project/commit/927cdd2c73590ef6475f7e00ce79078d6e8323bd.diff
LOG: [libc] Fix typo in uint128 type for PPC printf handling (#138157)
Added:
Modified:
libc/src/stdio/printf_core/core_structs.h
Removed:
################################################################################
diff --git a/libc/src/stdio/printf_core/core_structs.h b/libc/src/stdio/printf_core/core_structs.h
index bab4fe75058a0..e27f77b6b594a 100644
--- a/libc/src/stdio/printf_core/core_structs.h
+++ b/libc/src/stdio/printf_core/core_structs.h
@@ -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
More information about the libc-commits
mailing list