This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 806dfd40ff [DebugInfo] Combine Trivial and NonTrivial flags new 444665e219 Remove use of lookahead from _Pragma handling and from all o [...] new 0fa9a240fd [C++20] Implement context-sensitive header-name lexing and p [...]
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 | 17 +- include/clang/Basic/LangOptions.def | 5 +- include/clang/Basic/LangOptions.h | 2 +- include/clang/Basic/TokenKinds.def | 4 + include/clang/Lex/Preprocessor.h | 156 ++++++++++-- lib/Basic/IdentifierTable.cpp | 2 +- lib/Frontend/CompilerInvocation.cpp | 9 +- lib/Frontend/PrintPreprocessedOutput.cpp | 13 +- lib/Lex/PPCaching.cpp | 54 ++-- lib/Lex/PPDirectives.cpp | 176 ++++++++----- lib/Lex/Pragma.cpp | 125 +++++---- lib/Lex/Preprocessor.cpp | 280 ++++++++++++++++++--- lib/Lex/TokenConcatenation.cpp | 5 + test/CXX/cpp/cpp.module/Inputs/attrs.h | 1 + .../CXX/cpp/cpp.module/Inputs/empty.h | 0 test/CXX/cpp/cpp.module/p1.cpp | 18 ++ test/CXX/cpp/cpp.module/p2.cpp | 33 +++ test/CXX/lex/lex.pptoken/Inputs/foo bar | 1 + test/CXX/lex/lex.pptoken/Inputs/foo bar | 1 + test/CXX/lex/lex.pptoken/p3-2a.cpp | 81 ++++++ test/Modules/framework-name.m | 8 +- test/Modules/module_file_info.m | 2 +- test/Preprocessor/_Pragma-in-macro-arg.cpp | 22 ++ 23 files changed, 777 insertions(+), 238 deletions(-) create mode 100644 test/CXX/cpp/cpp.module/Inputs/attrs.h copy bindings/python/tests/__init__.py => test/CXX/cpp/cpp.module/Inputs/empty.h (100%) create mode 100644 test/CXX/cpp/cpp.module/p1.cpp create mode 100644 test/CXX/cpp/cpp.module/p2.cpp create mode 100644 test/CXX/lex/lex.pptoken/Inputs/foo bar create mode 100644 test/CXX/lex/lex.pptoken/Inputs/foo bar create mode 100644 test/CXX/lex/lex.pptoken/p3-2a.cpp create mode 100644 test/Preprocessor/_Pragma-in-macro-arg.cpp