diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-01-12 06:42:30 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-01-12 06:42:30 +0000 |
commit | 838dc597e25614c653a062a124b06a04d6b7f5eb (patch) | |
tree | 2c93daa5ee846c400fdfdc9b335b829f74048958 /lib/AST/ASTContext.cpp | |
parent | bcfdd263b79c766db9154b009bd831ef83090c83 (diff) |
Disable caching of visibility.
The testcase in pr14929 shows that this is extremely hard to do. If we choose
to apply the attribute, that causes the visibility of some decls to change and
that can happen really late (during codegen).
Current gcc warns and ignores the attribute in this testcase with a warning.
This suggest that the correct solution is to find a point in the compilation
where we can compute the visibility and
* assert it was never computed before
* reject any attempts to compute it again in the future (with warnings).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172305 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ASTContext.cpp')
-rw-r--r-- | lib/AST/ASTContext.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 409219a571..83e6d6bd28 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -958,7 +958,6 @@ ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl, "Already noted what static data member was instantiated from"); InstantiatedFromStaticDataMember[Inst] = new (*this) MemberSpecializationInfo(Tmpl, TSK, PointOfInstantiation); - Inst->ClearLVCache(); } FunctionDecl *ASTContext::getClassScopeSpecializationPattern( |