Skip to content

Commit 706b0b0

Browse files
committed
Whitespace changes to better match clang-format style
1 parent 8d22ae4 commit 706b0b0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

stdlib/public/RemoteInspection/TypeLowering.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,7 @@ BitMask BuiltinTypeInfo::getSpareBits(TypeConverter &TC, bool &hasAddrOnly) cons
327327
auto mask = BitMask::oneMask(getSize());
328328
mask.keepOnlyMostSignificantBits(getSize() * 8 - intSize);
329329
return mask;
330-
} else if (
331-
Name == "ypXp" // Any.Type
330+
} else if (Name == "ypXp" // Any.Type
332331
) {
333332
// Builtin types that expose pointer spare bits
334333
auto mpePointerSpareBits = TC.getBuilder().getMultiPayloadEnumPointerMask();
@@ -426,7 +425,7 @@ BitMask RecordTypeInfo::getSpareBits(TypeConverter &TC, bool &hasAddrOnly) const
426425
// Thick functions have two fields:
427426
// * Code pointer that might be signed and/or misaligned
428427
// * Context that could be a tagged pointer
429-
mask.makeZero(); // No spare bits
428+
mask.makeZero(); // No spare bits
430429
return mask;
431430
case RecordKind::OpaqueExistential: {
432431
// Existential storage isn't recorded as a field,

0 commit comments

Comments
 (0)