diff options
author | Alexis Hunt <alercah@gmail.com> | 2011-05-27 20:00:14 +0000 |
---|---|---|
committer | Alexis Hunt <alercah@gmail.com> | 2011-05-27 20:00:14 +0000 |
commit | 23f6b83d6f5375ee586736dda05d4f5517df336a (patch) | |
tree | 7a20e8f7f0eac96b5ec0dfa03872989757f4ffd7 /clang | |
parent | 3252177f16cdaff9eafdc970fd7f195593e65096 (diff) | |
download | bcm5719-llvm-23f6b83d6f5375ee586736dda05d4f5517df336a.tar.gz bcm5719-llvm-23f6b83d6f5375ee586736dda05d4f5517df336a.zip |
Add assertions to verify that we are not trying to instantiate a
nontemplate in Sema::InstantiateTemplateDecl.
This should make the issue in PR10026 more visible, although it's not
going to fix it because something is violating this precondition.
llvm-svn: 132208
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Sema/SemaTemplateInstantiateDecl.cpp | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp b/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp index e9c09c39f33..bf1e4996ec6 100644 --- a/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp +++ b/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp @@ -2317,16 +2317,18 @@ void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, // Find the function body that we'll be substituting. const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern(); - Stmt *Pattern = 0; - if (PatternDecl) { - Pattern = PatternDecl->getBody(PatternDecl); - if (!Pattern) - // Try to find a defaulted definition - PatternDecl->isDefined(PatternDecl); + assert(PatternDecl && "instantiating a non-template"); + + Stmt *Pattern = PatternDecl->getBody(PatternDecl); + assert(PatternDecl && "template definition is not a template"); + if (!Pattern) { + // Try to find a defaulted definition + PatternDecl->isDefined(PatternDecl); } + assert(PatternDecl && "template definition is not a template"); // Postpone late parsed template instantiations. - if (PatternDecl && PatternDecl->isLateTemplateParsed() && + if (PatternDecl->isLateTemplateParsed() && !LateTemplateParser) { PendingInstantiations.push_back( std::make_pair(Function, PointOfInstantiation)); @@ -2335,13 +2337,13 @@ void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, // Call the LateTemplateParser callback if there a need to late parse // a templated function definition. - if (!Pattern && PatternDecl && PatternDecl->isLateTemplateParsed() && + if (!Pattern && PatternDecl->isLateTemplateParsed() && LateTemplateParser) { LateTemplateParser(OpaqueParser, PatternDecl); Pattern = PatternDecl->getBody(PatternDecl); } - if (!Pattern && PatternDecl && !PatternDecl->isDefaulted()) { + if (!Pattern && !PatternDecl->isDefaulted()) { if (DefinitionRequired) { if (Function->getPrimaryTemplate()) Diag(PointOfInstantiation, |