aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/Preprocessor.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-08-31 18:45:31 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-08-31 18:45:31 +0000
commitc0846d623b2ef8502ff3ebcbf2cf37a6b0ab9f93 (patch)
treec4967044f642d80903d7c77539e9e6814d798fe3 /lib/Lex/Preprocessor.cpp
parent5aa5a81b18dcb5fe5bb658fc73bb89cc72027822 (diff)
Make sure to initialize field. Hopefully this will fix some test failures on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r--lib/Lex/Preprocessor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp
index 65a5b99ca1..b285660c08 100644
--- a/lib/Lex/Preprocessor.cpp
+++ b/lib/Lex/Preprocessor.cpp
@@ -77,6 +77,7 @@ Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts,
// Default to discarding comments.
KeepComments = false;
KeepMacroComments = false;
+ SuppressIncludeNotFoundError = false;
// Macro expansion is enabled.
DisableMacroExpansion = false;