aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Lex/Preprocessor.cpp
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2013-01-31 19:26:01 +0000
committerJordan Rose <jordan_rose@apple.com>2013-01-31 19:26:01 +0000
commit324ec4221a059c6abfd8acd67951789282ac31fa (patch)
treed19e7066c6ad0e3214d87fbc8c313750ee8313ec /clang/lib/Lex/Preprocessor.cpp
parent63adddde6fae2c6390972e6791e3e6c9e8394054 (diff)
downloadllvm-324ec4221a059c6abfd8acd67951789282ac31fa.zip
llvm-324ec4221a059c6abfd8acd67951789282ac31fa.tar.gz
llvm-324ec4221a059c6abfd8acd67951789282ac31fa.tar.bz2
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. llvm-svn: 174077
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r--clang/lib/Lex/Preprocessor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp
index 4c3c181..eb498db 100644
--- a/clang/lib/Lex/Preprocessor.cpp
+++ b/clang/lib/Lex/Preprocessor.cpp
@@ -97,6 +97,7 @@ Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
NumCachedTokenLexers = 0;
PragmasEnabled = true;
ParsingIfOrElifDirective = false;
+ PreprocessedOutput = false;
CachedLexPos = 0;