From: Richard Smith Date: Wed, 29 Apr 2015 17:48:08 +0000 (+0000) Subject: Revert r236063 due to regression with -fdelayed-template-parsing. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e595d0acac96b57dfb751ba2b4c527d99c84268;p=clang Revert r236063 due to regression with -fdelayed-template-parsing. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236134 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaTemplateInstantiateDecl.cpp b/lib/Sema/SemaTemplateInstantiateDecl.cpp index 57faa1cbad..8f2e95a615 100644 --- a/lib/Sema/SemaTemplateInstantiateDecl.cpp +++ b/lib/Sema/SemaTemplateInstantiateDecl.cpp @@ -1302,19 +1302,11 @@ Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) { // DR1484 clarifies that the members of a local class are instantiated as part // of the instantiation of their enclosing entity. if (D->isCompleteDefinition() && D->isLocalClass()) { - Sema::SavePendingLocalImplicitInstantiationsRAII - SavedPendingLocalImplicitInstantiations(SemaRef); - SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs, TSK_ImplicitInstantiation, /*Complain=*/true); - SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs, TSK_ImplicitInstantiation); - - // This class may have local implicit instantiations that need to be - // performed within this scope. - SemaRef.PerformPendingInstantiations(/*LocalOnly=*/true); } SemaRef.DiagnoseUnusedNestedTypedefs(Record); diff --git a/test/SemaTemplate/instantiate-local-class.cpp b/test/SemaTemplate/instantiate-local-class.cpp index 668fb6fa65..367134a2a5 100644 --- a/test/SemaTemplate/instantiate-local-class.cpp +++ b/test/SemaTemplate/instantiate-local-class.cpp @@ -213,16 +213,3 @@ namespace PR23194 { return make_seed_pair(); } } - -namespace PR20625 { -template -void f() { - struct N { - static constexpr int get() { return 42; } - }; - constexpr int n = N::get(); - static_assert(n == 42, "n == 42"); -} - -void g() { f(); } -}