Merging rr280190:
------------------------------------------------------------------------ r280190 | rsmith | 2016-08-30 20:15:21 -0600 (Tue, 30 Aug 2016) | 12 lines PR12298 et al: don't recursively instantiate a template specialization from within the instantiation of that same specialization. This could previously happen for eagerly-instantiated function templates, variable templates, exception specifications, default arguments, and a handful of other cases. We still have an issue here for default template arguments that recursively make use of themselves and likewise for substitution into the type of a non-type template parameter, but in those cases we're producing a different entity each time, so they should instead be caught by the instantiation depth limit. However, currently we will typically run out of stack before we reach it. :( ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_39@282636 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/DeclTemplate.h 10 additions, 0 deletionsinclude/clang/AST/DeclTemplate.h
- include/clang/Basic/DiagnosticSemaKinds.td 4 additions, 0 deletionsinclude/clang/Basic/DiagnosticSemaKinds.td
- include/clang/Sema/Sema.h 16 additions, 7 deletionsinclude/clang/Sema/Sema.h
- lib/Sema/SemaDecl.cpp 2 additions, 1 deletionlib/Sema/SemaDecl.cpp
- lib/Sema/SemaExpr.cpp 5 additions, 0 deletionslib/Sema/SemaExpr.cpp
- lib/Sema/SemaTemplate.cpp 8 additions, 5 deletionslib/Sema/SemaTemplate.cpp
- lib/Sema/SemaTemplateInstantiate.cpp 30 additions, 7 deletionslib/Sema/SemaTemplateInstantiate.cpp
- lib/Sema/SemaTemplateInstantiateDecl.cpp 26 additions, 9 deletionslib/Sema/SemaTemplateInstantiateDecl.cpp
- test/SemaTemplate/instantiate-self.cpp 92 additions, 11 deletionstest/SemaTemplate/instantiate-self.cpp
- test/SemaTemplate/instantiation-depth-exception-spec.cpp 9 additions, 6 deletionstest/SemaTemplate/instantiation-depth-exception-spec.cpp
- test/SemaTemplate/instantiation-depth.cpp 4 additions, 5 deletionstest/SemaTemplate/instantiation-depth.cpp
Loading
Please register or sign in to comment