Skip to content

Commit f273433

Browse files
jhuber6Ankur-0429
authored andcommitted
[libc] Fix typo in uint128 type for PPC printf handling (llvm#138157)
1 parent 8d17dc2 commit f273433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/stdio/printf_core/core_structs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct FormatSection {
5858
// Needs to be large enough to hold a long double. Special case handling for
5959
// the PowerPC double double type because it has no FPBits interface.
6060
#ifdef LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE
61-
Uint128 conv_val_raw;
61+
UInt128 conv_val_raw;
6262
#else
6363
fputil::FPBits<long double>::StorageType conv_val_raw;
6464
#endif // LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE

0 commit comments

Comments
 (0)