Index: include/clang/AST/TypeLoc.h =================================================================== --- include/clang/AST/TypeLoc.h +++ include/clang/AST/TypeLoc.h @@ -510,7 +510,7 @@ struct BuiltinLocInfo { - SourceLocation BuiltinLoc; + SourceRange BuiltinRange; }; /// \brief Wrapper for source info for builtin types. @@ -520,10 +520,17 @@ BuiltinLocInfo> { public: SourceLocation getBuiltinLoc() const { - return getLocalData()->BuiltinLoc; + return getLocalData()->BuiltinRange.getBegin(); } void setBuiltinLoc(SourceLocation Loc) { - getLocalData()->BuiltinLoc = Loc; + getLocalData()->BuiltinRange = {Loc, Loc}; + } + void setBuiltinLocStart(SourceLocation Loc) { + if (getLocalData()->BuiltinRange.getEnd().isValid()) { + getLocalData()->BuiltinRange.setBegin(Loc); + } else { + setBuiltinLoc(Loc); + } } SourceLocation getNameLoc() const { return getBuiltinLoc(); } @@ -552,7 +559,7 @@ } SourceRange getLocalSourceRange() const { - return SourceRange(getBuiltinLoc(), getBuiltinLoc()); + return getLocalData()->BuiltinRange; } TypeSpecifierSign getWrittenSignSpec() const { Index: lib/Sema/DeclSpec.cpp =================================================================== --- lib/Sema/DeclSpec.cpp +++ lib/Sema/DeclSpec.cpp @@ -618,6 +618,8 @@ else if (W != TSW_longlong || TypeSpecWidth != TSW_long) return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); TypeSpecWidth = W; + // Remember location of the last 'long' + TSTLoc = Loc; return false; } Index: lib/Sema/SemaType.cpp =================================================================== --- lib/Sema/SemaType.cpp +++ lib/Sema/SemaType.cpp @@ -4920,10 +4920,10 @@ // Try to have a meaningful source location. if (TL.getWrittenSignSpec() != TSS_unspecified) // Sign spec loc overrides the others (e.g., 'unsigned long'). - TL.setBuiltinLoc(DS.getTypeSpecSignLoc()); + TL.setBuiltinLocStart(DS.getTypeSpecSignLoc()); else if (TL.getWrittenWidthSpec() != TSW_unspecified) // Width spec loc overrides type spec loc (e.g., 'short int'). - TL.setBuiltinLoc(DS.getTypeSpecWidthLoc()); + TL.setBuiltinLocStart(DS.getTypeSpecWidthLoc()); } } void VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {