diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-19 00:11:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-19 00:11:19 +0000 |
commit | 938867c6cf8926fb5ff559095c452b8e15ab5d2a (patch) | |
tree | c7d73e370e0f29bc57c7a11f25b41e2443f41042 /Lex/IdentifierTable.cpp | |
parent | 0ea793e5e37a7b2283ef0c64676ffc7201b1b417 (diff) |
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
Diffstat (limited to 'Lex/IdentifierTable.cpp')
-rw-r--r-- | Lex/IdentifierTable.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |