[cfe-commits] r161141 - /cfe/trunk/lib/AST/CommentSema.cpp

Dmitri Gribenko gribozavr at gmail.com
Wed Aug 1 16:21:57 PDT 2012


Author: gribozavr
Date: Wed Aug  1 18:21:57 2012
New Revision: 161141

URL: http://llvm.org/viewvc/llvm-project?rev=161141&view=rev
Log:
Initialize flag in DeclInfo.

Modified:
    cfe/trunk/lib/AST/CommentSema.cpp

Modified: cfe/trunk/lib/AST/CommentSema.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/CommentSema.cpp?rev=161141&r1=161140&r2=161141&view=diff
==============================================================================
--- cfe/trunk/lib/AST/CommentSema.cpp (original)
+++ cfe/trunk/lib/AST/CommentSema.cpp Wed Aug  1 18:21:57 2012
@@ -29,6 +29,7 @@
 
   ThisDeclInfo = new (Allocator) DeclInfo;
   ThisDeclInfo->ThisDecl = D;
+  ThisDeclInfo->IsFilled = false;
 }
 
 ParagraphComment *Sema::actOnParagraphComment(





More information about the cfe-commits mailing list