Update comment to not be specific for signed integers (#5987)

Following the change in #5980.
This commit is contained in:
Boaz Brickner
2025-08-26 21:49:31 +00:00
committed by GitHub
parent 742017c475
commit 6ba900ab97
+1 -1
View File
@@ -1088,7 +1088,7 @@ static auto MapBuiltinType(Context& context, SemIR::LocId loc_id,
if (context.ast_context().hasSameType(qual_type, int_n_type)) {
TypeExpr type_expr =
MakeIntType(context, context.ints().Add(width), is_signed);
// Try to make sure signed integer of 32 or 64 bits are complete so we can
// Try to make sure integer types of 32 or 64 bits are complete so we can
// check against them when deciding whether we need to generate a thunk.
if (width == 32 || width == 64) {
SemIR::TypeId type_id = type_expr.type_id;