Pattern is not. Thanks Nick for catching this!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132089
91177308-0d34-0410-b5e6-
96231b3b80d8
// Find the function body that we'll be substituting.
const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Stmt *Pattern = 0;
- if (PatternDecl)
+ if (PatternDecl) {
Pattern = PatternDecl->getBody(PatternDecl);
- if (!Pattern)
- // Try to find a defaulted definition
- PatternDecl->isDefined(PatternDecl);
+ if (!Pattern)
+ // Try to find a defaulted definition
+ PatternDecl->isDefined(PatternDecl);
+ }
// Postpone late parsed template instantiations.
if (PatternDecl && PatternDecl->isLateTemplateParsed() &&