@@ -455,8 +455,6 @@ class alignas(void *) Stmt {
455455 unsigned NonOdrUseReason : 2 ;
456456 LLVM_PREFERRED_TYPE (bool )
457457 unsigned IsImmediateEscalating : 1 ;
458-
459-
460458 };
461459
462460
@@ -526,8 +524,6 @@ class alignas(void *) Stmt {
526524 // / It is 0 otherwise.
527525 LLVM_PREFERRED_TYPE (bool )
528526 unsigned HasFPFeatures : 1 ;
529-
530-
531527 };
532528
533529 class UnaryExprOrTypeTraitExprBitfields {
@@ -582,8 +578,8 @@ class alignas(void *) Stmt {
582578 // / Trailing objects. See the definition of CallExpr.
583579 LLVM_PREFERRED_TYPE (bool )
584580 unsigned HasTrailingSourceLoc : 1 ;
585-
586- unsigned NumArgs: 20 ;
581+
582+ unsigned NumArgs : 20 ;
587583 };
588584 enum { NumCallExprBits = 52 };
589585
@@ -629,7 +625,7 @@ class alignas(void *) Stmt {
629625 // / This is the location of the -> or . in the expression.
630626 // SourceLocation OperatorLoc;
631627 };
632-
628+
633629 // 8 bytes
634630 class CastExprBitfields {
635631 friend class CastExpr ;
@@ -1047,8 +1043,6 @@ class alignas(void *) Stmt {
10471043 unsigned ConstructionKind : 3 ;
10481044 LLVM_PREFERRED_TYPE (bool )
10491045 unsigned IsImmediateEscalating : 1 ;
1050-
1051-
10521046 };
10531047
10541048 class ExprWithCleanupsBitfields {
@@ -1978,8 +1972,8 @@ class CaseStmt final
19781972 // with a range. Present if and only if caseStmtIsGNURange() is true.
19791973 enum { LhsOffset = 0 , SubStmtOffsetFromRhs = 1 };
19801974 enum { NumMandatoryStmtPtr = 2 };
1981- // / The location of the "case" or "default" keyword.
1982- SourceLocation KeywordLoc;
1975+ // / The location of the "case" or "default" keyword.
1976+ SourceLocation KeywordLoc;
19831977 unsigned numTrailingObjects (OverloadToken<Stmt *>) const {
19841978 return NumMandatoryStmtPtr + caseStmtIsGNURange ();
19851979 }
@@ -2241,8 +2235,8 @@ class AttributedStmt final
22412235 private llvm::TrailingObjects<AttributedStmt, const Attr *> {
22422236 friend class ASTStmtReader ;
22432237 friend TrailingObjects;
2244- // / The location of the attribute.
2245- SourceLocation AttrLoc;
2238+ // / The location of the attribute.
2239+ SourceLocation AttrLoc;
22462240 Stmt *SubStmt;
22472241
22482242 AttributedStmt (SourceLocation Loc, ArrayRef<const Attr *> Attrs,
@@ -3116,7 +3110,6 @@ class IndirectGotoStmt : public Stmt {
31163110// / ContinueStmt - This represents a continue.
31173111class ContinueStmt : public Stmt {
31183112public:
3119-
31203113 ContinueStmt (SourceLocation CL) : Stmt(ContinueStmtClass) {
31213114 setContinueLoc (CL);
31223115 }
0 commit comments