@@ -966,7 +966,7 @@ static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI,
966
966
967
967
ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM,
968
968
IdentifierTable &idents, SelectorTable &sels,
969
- Builtin::Context &builtins, TranslationUnitKind TUKind )
969
+ Builtin::Context &builtins)
970
970
: ConstantArrayTypes(this_()), FunctionProtoTypes(this_()),
971
971
TemplateSpecializationTypes(this_()),
972
972
DependentTemplateSpecializationTypes(this_()), AutoTypes(this_()),
@@ -978,10 +978,11 @@ ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM,
978
978
LangOpts.XRayAttrListFiles, SM)),
979
979
ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)),
980
980
PrintingPolicy(LOpts), Idents(idents), Selectors(sels),
981
- BuiltinInfo(builtins), TUKind(TUKind ), DeclarationNames(*this ),
982
- Comments(SM), CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
981
+ BuiltinInfo(builtins), DeclarationNames(*this ), Comments(SM ),
982
+ CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
983
983
CompCategories(this_()), LastSDM(nullptr, 0) {
984
- addTranslationUnitDecl();
984
+ TUDecl = TranslationUnitDecl::Create(*this);
985
+ TraversalScope = {TUDecl};
985
986
}
986
987
987
988
ASTContext::~ASTContext() {
@@ -1195,10 +1196,9 @@ ExternCContextDecl *ASTContext::getExternCContextDecl() const {
1195
1196
BuiltinTemplateDecl *
1196
1197
ASTContext::buildBuiltinTemplateDecl(BuiltinTemplateKind BTK,
1197
1198
const IdentifierInfo *II) const {
1198
- auto *BuiltinTemplate =
1199
- BuiltinTemplateDecl::Create(*this, getTranslationUnitDecl(), II, BTK);
1199
+ auto *BuiltinTemplate = BuiltinTemplateDecl::Create(*this, TUDecl, II, BTK);
1200
1200
BuiltinTemplate->setImplicit();
1201
- getTranslationUnitDecl() ->addDecl(BuiltinTemplate);
1201
+ TUDecl ->addDecl(BuiltinTemplate);
1202
1202
1203
1203
return BuiltinTemplate;
1204
1204
}
@@ -1490,7 +1490,7 @@ void ASTContext::InitBuiltinTypes(const TargetInfo &Target,
1490
1490
// MSVC predeclares struct _GUID, and we need it to create MSGuidDecls.
1491
1491
if (LangOpts.MicrosoftExt || LangOpts.Borland) {
1492
1492
MSGuidTagDecl = buildImplicitRecord("_GUID");
1493
- getTranslationUnitDecl() ->addDecl(MSGuidTagDecl);
1493
+ TUDecl ->addDecl(MSGuidTagDecl);
1494
1494
}
1495
1495
}
1496
1496
@@ -6634,7 +6634,7 @@ QualType ASTContext::getCFConstantStringType() const {
6634
6634
QualType ASTContext::getObjCSuperType() const {
6635
6635
if (ObjCSuperType.isNull()) {
6636
6636
RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super");
6637
- getTranslationUnitDecl() ->addDecl(ObjCSuperTypeDecl);
6637
+ TUDecl ->addDecl(ObjCSuperTypeDecl);
6638
6638
ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
6639
6639
}
6640
6640
return ObjCSuperType;
0 commit comments