From: Jordan Rose Date: Thu, 31 Jan 2013 19:26:01 +0000 (+0000) Subject: Preprocessor: initialize member introduced in r173881. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98b21b9fcef25fc6953ce36b4c71ca2c02999f1d;p=clang 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 --- 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 PPOpts, NumCachedTokenLexers = 0; PragmasEnabled = true; ParsingIfOrElifDirective = false; + PreprocessedOutput = false; CachedLexPos = 0;