@@ -403,8 +403,8 @@ class ASTContext : public RefCountedBase<ASTContext> {
403
403
// / The identifier '__type_pack_element'.
404
404
mutable IdentifierInfo *TypePackElementName = nullptr ;
405
405
406
- // / The identifier '__type_list_dedup '.
407
- mutable IdentifierInfo *TypeListDedupName = nullptr ;
406
+ // / The identifier '__builtin_type_pack_dedup '.
407
+ mutable IdentifierInfo *TypePackDedupName = nullptr ;
408
408
409
409
QualType ObjCConstantStringType;
410
410
mutable RecordDecl *CFConstantStringTagDecl = nullptr ;
@@ -613,7 +613,7 @@ class ASTContext : public RefCountedBase<ASTContext> {
613
613
mutable ExternCContextDecl *ExternCContext = nullptr ;
614
614
mutable BuiltinTemplateDecl *MakeIntegerSeqDecl = nullptr ;
615
615
mutable BuiltinTemplateDecl *TypePackElementDecl = nullptr ;
616
- mutable BuiltinTemplateDecl *TypeListDedupDecl = nullptr ;
616
+ mutable BuiltinTemplateDecl *TypePackDedupDecl = nullptr ;
617
617
618
618
// / The associated SourceManager object.
619
619
SourceManager &SourceMgr;
@@ -1121,7 +1121,7 @@ class ASTContext : public RefCountedBase<ASTContext> {
1121
1121
ExternCContextDecl *getExternCContextDecl () const ;
1122
1122
BuiltinTemplateDecl *getMakeIntegerSeqDecl () const ;
1123
1123
BuiltinTemplateDecl *getTypePackElementDecl () const ;
1124
- BuiltinTemplateDecl *getTypeListDedupDecl () const ;
1124
+ BuiltinTemplateDecl *getTypePackDedupDecl () const ;
1125
1125
1126
1126
// Builtin Types.
1127
1127
CanQualType VoidTy;
@@ -2013,10 +2013,10 @@ class ASTContext : public RefCountedBase<ASTContext> {
2013
2013
return TypePackElementName;
2014
2014
}
2015
2015
2016
- IdentifierInfo *getTypeListDedupName () const {
2017
- if (!TypeListDedupName )
2018
- TypeListDedupName = &Idents.get (" __type_list_dedup " );
2019
- return TypeListDedupName ;
2016
+ IdentifierInfo *getTypePackDedupName () const {
2017
+ if (!TypePackDedupName )
2018
+ TypePackDedupName = &Idents.get (" __builtin_type_pack_dedup " );
2019
+ return TypePackDedupName ;
2020
2020
}
2021
2021
2022
2022
// / Retrieve the Objective-C "instancetype" type, if already known;
0 commit comments