diff options
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r-- | lib/AST/Decl.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 9bf35ee83d..2732bf93c1 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -75,9 +75,13 @@ FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, StorageClass S, bool isInline, + bool hasPrototype, SourceLocation TypeSpecStartLoc) { - return new (C) FunctionDecl(Function, DC, L, N, T, S, isInline, - TypeSpecStartLoc); + FunctionDecl *New + = new (C) FunctionDecl(Function, DC, L, N, T, S, isInline, + TypeSpecStartLoc); + New->HasPrototype = hasPrototype; + return New; } BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { |