]> granicus.if.org Git - clang/commitdiff
Make sure to initialize an ivar, patch by Benoit Boissinot.
authorChris Lattner <sabre@nondot.org>
Thu, 19 Jul 2007 00:11:19 +0000 (00:11 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 19 Jul 2007 00:11:19 +0000 (00:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40027 91177308-0d34-0410-b5e6-96231b3b80d8

Lex/IdentifierTable.cpp

index 4c6516df2d38707a7f8d2246ba02fd6142367994..c12fdef20305dc255a0728cc2fd84c27d170da70 100644 (file)
@@ -31,6 +31,7 @@ IdentifierInfo::IdentifierInfo() {
   IsPoisoned = false;
   IsOtherTargetMacro = false;
   IsCPPOperatorKeyword = false;
+  IsNonPortableBuiltin = false;
   FETokenInfo = 0;
 }