[cfe-commits] r40027 - /cfe/trunk/Lex/IdentifierTable.cpp
Chris Lattner
sabre at nondot.org
Wed Jul 18 17:11:22 PDT 2007
Author: lattner
Date: Wed Jul 18 19:11:19 2007
New Revision: 40027
URL: http://llvm.org/viewvc/llvm-project?rev=40027&view=rev
Log:
Make sure to initialize an ivar, patch by Benoit Boissinot.
Modified:
cfe/trunk/Lex/IdentifierTable.cpp
Modified: cfe/trunk/Lex/IdentifierTable.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Lex/IdentifierTable.cpp?rev=40027&r1=40026&r2=40027&view=diff
==============================================================================
--- cfe/trunk/Lex/IdentifierTable.cpp (original)
+++ cfe/trunk/Lex/IdentifierTable.cpp Wed Jul 18 19:11:19 2007
@@ -31,6 +31,7 @@
IsPoisoned = false;
IsOtherTargetMacro = false;
IsCPPOperatorKeyword = false;
+ IsNonPortableBuiltin = false;
FETokenInfo = 0;
}
More information about the cfe-commits
mailing list