diff options
author | Jordan Rose <jordan_rose@apple.com> | 2013-01-31 19:26:01 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2013-01-31 19:26:01 +0000 |
commit | 98b21b9fcef25fc6953ce36b4c71ca2c02999f1d (patch) | |
tree | 72abbdd741db4124987c92b4dbcaa80bf60508ba /lib/Lex/Preprocessor.cpp | |
parent | b450161ce8dafa90f910ce6004900337615cd5e3 (diff) |
Preprocessor: initialize member introduced in r173881.
Compilation always sets this explicitly, but creating a preprocessor
manually should still put the 'IsPreprocessedOutput' flag in a valid state.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 4c3c181f44..eb498dbfd2 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -97,6 +97,7 @@ Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, NumCachedTokenLexers = 0; PragmasEnabled = true; ParsingIfOrElifDirective = false; + PreprocessedOutput = false; CachedLexPos = 0; |