From: Chris Lattner Date: Thu, 19 Jul 2007 00:11:19 +0000 (+0000) Subject: Make sure to initialize an ivar, patch by Benoit Boissinot. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=938867c6cf8926fb5ff559095c452b8e15ab5d2a;p=clang Make sure to initialize an ivar, patch by Benoit Boissinot. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40027 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Lex/IdentifierTable.cpp b/Lex/IdentifierTable.cpp index 4c6516df2d..c12fdef203 100644 --- a/Lex/IdentifierTable.cpp +++ b/Lex/IdentifierTable.cpp @@ -31,6 +31,7 @@ IdentifierInfo::IdentifierInfo() { IsPoisoned = false; IsOtherTargetMacro = false; IsCPPOperatorKeyword = false; + IsNonPortableBuiltin = false; FETokenInfo = 0; }