diff options
author | John McCall <rjmccall@apple.com> | 2011-02-08 19:01:05 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-02-08 19:01:05 +0000 |
commit | f76b092e1a6f0df4a5c64aae3c71d6e81e4b717c (patch) | |
tree | f5f15a88e5e00ba7ce1a4680482ffc3e22d2979c /lib/AST/Decl.cpp | |
parent | 651f86fb6b0f1a251c65a9be6d3fa83e67d5988d (diff) |
Clear the linkage cache recursively. Fixes PR8926.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125104 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r-- | lib/AST/Decl.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 4fb47bfcdc..11614df500 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -579,6 +579,37 @@ static LinkageInfo getLVForClassMember(const NamedDecl *D, LVFlags F) { return LV; } +static void clearLinkageForClass(const CXXRecordDecl *record) { + for (CXXRecordDecl::decl_iterator + i = record->decls_begin(), e = record->decls_end(); i != e; ++i) { + Decl *child = *i; + if (isa<NamedDecl>(child)) + cast<NamedDecl>(child)->ClearLinkageCache(); + } +} + +void NamedDecl::ClearLinkageCache() { + // Note that we can't skip clearing the linkage of children just + // because the parent doesn't have cached linkage: we don't cache + // when computing linkage for parent contexts. + + HasCachedLinkage = 0; + + // If we're changing the linkage of a class, we need to reset the + // linkage of child declarations, too. + if (const CXXRecordDecl *record = dyn_cast<CXXRecordDecl>(this)) + clearLinkageForClass(record); + + if (const ClassTemplateDecl *temp = dyn_cast<ClassTemplateDecl>(this)) { + // Clear linkage for the template pattern. + CXXRecordDecl *record = temp->getTemplatedDecl(); + record->HasCachedLinkage = 0; + clearLinkageForClass(record); + + // ...do we need to clear linkage for specializations, too? + } +} + Linkage NamedDecl::getLinkage() const { if (HasCachedLinkage) { assert(Linkage(CachedLinkage) == |