This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from feb79d981f Fix __builtin_*_overflow when out-param isn't constexpr new ba7b10ace8 [clang-cl, PCH] Implement support for MS-style PCH through headers new 6aaa2f4b45 Add PCH tests for R336379
The 2 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: include/clang/Basic/DiagnosticLexKinds.td | 8 +++ include/clang/Driver/CC1Options.td | 7 +-- include/clang/Frontend/FrontendOptions.h | 4 -- include/clang/Lex/Preprocessor.h | 25 ++++++++ include/clang/Lex/PreprocessorOptions.h | 7 +++ lib/Driver/Driver.cpp | 23 ++------ lib/Driver/ToolChains/Clang.cpp | 79 +++++-------------------- lib/Frontend/CompilerInstance.cpp | 31 +--------- lib/Frontend/CompilerInvocation.cpp | 2 +- lib/Lex/PPDirectives.cpp | 35 +++++++++++- lib/Lex/PPLexerChange.cpp | 27 ++++++++- lib/Lex/Preprocessor.cpp | 71 +++++++++++++++++++++++ lib/Parse/ParseAST.cpp | 6 ++ lib/Serialization/ASTReader.cpp | 11 ++++ test/Driver/cl-pch-search.cpp | 2 +- test/Driver/cl-pch.cpp | 95 ++++++++++++++++++------------- test/PCH/Inputs/pch-through-use0.cpp | 2 + test/PCH/Inputs/pch-through-use1.cpp | 5 ++ test/PCH/Inputs/pch-through-use2.cpp | 3 + test/PCH/Inputs/pch-through-use3a.cpp | 2 + test/PCH/Inputs/pch-through-use3b.cpp | 3 + test/PCH/Inputs/pch-through1.h | 2 + test/PCH/Inputs/pch-through2.h | 2 + test/PCH/Inputs/pch-through3.h | 2 + test/PCH/Inputs/pch-through4.h | 2 + test/PCH/pch-through1.cpp | 34 +++++++++++ test/PCH/pch-through2.cpp | 28 +++++++++ test/PCH/pch-through3a.cpp | 10 ++++ test/PCH/pch-through3b.cpp | 14 +++++ 29 files changed, 377 insertions(+), 165 deletions(-) create mode 100644 test/PCH/Inputs/pch-through-use0.cpp create mode 100644 test/PCH/Inputs/pch-through-use1.cpp create mode 100644 test/PCH/Inputs/pch-through-use2.cpp create mode 100644 test/PCH/Inputs/pch-through-use3a.cpp create mode 100644 test/PCH/Inputs/pch-through-use3b.cpp create mode 100644 test/PCH/Inputs/pch-through1.h create mode 100644 test/PCH/Inputs/pch-through2.h create mode 100644 test/PCH/Inputs/pch-through3.h create mode 100644 test/PCH/Inputs/pch-through4.h create mode 100644 test/PCH/pch-through1.cpp create mode 100644 test/PCH/pch-through2.cpp create mode 100644 test/PCH/pch-through3a.cpp create mode 100644 test/PCH/pch-through3b.cpp