From 651f8ce530ebe6f7f4b67988c3c532a94f097efc Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Wed, 1 Aug 2012 23:21:57 +0000 Subject: [PATCH] Initialize flag in DeclInfo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161141 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/CommentSema.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/AST/CommentSema.cpp b/lib/AST/CommentSema.cpp index 3566091655..cedc72a988 100644 --- a/lib/AST/CommentSema.cpp +++ b/lib/AST/CommentSema.cpp @@ -29,6 +29,7 @@ void Sema::setDecl(const Decl *D) { ThisDeclInfo = new (Allocator) DeclInfo; ThisDeclInfo->ThisDecl = D; + ThisDeclInfo->IsFilled = false; } ParagraphComment *Sema::actOnParagraphComment( -- 2.50.1