This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0a8a76da18 [ASTMatchers] add three matchers for dependent expressions new 3886719cbb [clang-cl, PCH] Support for /Yc and /Yu without filename and [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/ReleaseNotes.rst | 5 +++ include/clang/Basic/DiagnosticDriverKinds.td | 3 -- include/clang/Basic/DiagnosticLexKinds.td | 7 +++ include/clang/Driver/CC1Options.td | 4 ++ include/clang/Lex/Preprocessor.h | 20 +++++++-- include/clang/Lex/PreprocessorOptions.h | 10 +++++ lib/Driver/Driver.cpp | 23 +++------- lib/Driver/ToolChains/Clang.cpp | 15 +++++-- lib/Frontend/CompilerInvocation.cpp | 3 ++ lib/Lex/PPDirectives.cpp | 31 ++++++++----- lib/Lex/Pragma.cpp | 41 ++++++++++++++++++ lib/Lex/Preprocessor.cpp | 44 ++++++++++++++----- lib/Parse/ParseAST.cpp | 34 +++++++-------- test/Driver/cl-pch.cpp | 65 ++++++++++++++++++++++++++++ test/PCH/Inputs/pch-hdrstop-use.cpp | 13 ++++++ test/PCH/Inputs/pch-no-hdrstop-use.cpp | 11 +++++ test/PCH/pch-hdrstop-err.cpp | 14 ++++++ test/PCH/pch-hdrstop-warn.cpp | 10 +++++ test/PCH/pch-hdrstop.cpp | 28 ++++++++++++ test/PCH/pch-no-hdrstop.cpp | 18 ++++++++ 20 files changed, 333 insertions(+), 66 deletions(-) create mode 100644 test/PCH/Inputs/pch-hdrstop-use.cpp create mode 100644 test/PCH/Inputs/pch-no-hdrstop-use.cpp create mode 100644 test/PCH/pch-hdrstop-err.cpp create mode 100644 test/PCH/pch-hdrstop-warn.cpp create mode 100644 test/PCH/pch-hdrstop.cpp create mode 100644 test/PCH/pch-no-hdrstop.cpp