This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d4d74154eb Revert "[AArch64] Add ARMv8.2-A FP16 vefctor intrinsics" new 146ecad762 Support lazy stat'ing of files referenced by module maps.
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/Modules.rst | 25 +- include/clang/Basic/DiagnosticLexKinds.td | 6 + .../clang/Basic/DiagnosticSerializationKinds.td | 12 +- include/clang/Basic/Module.h | 10 +- include/clang/Lex/ModuleMap.h | 45 ++- lib/Basic/Module.cpp | 21 +- lib/Frontend/FrontendAction.cpp | 26 +- lib/Lex/HeaderSearch.cpp | 2 + lib/Lex/ModuleMap.cpp | 334 +++++++++++++++------ lib/Lex/PPDirectives.cpp | 2 + lib/Serialization/ASTWriter.cpp | 156 +++++++--- test/Modules/Inputs/header-attribs/bar.h | 1 + test/Modules/Inputs/header-attribs/baz.h | 1 + test/Modules/Inputs/header-attribs/foo.h | 1 + .../Inputs/header-attribs/modular.modulemap | 5 + .../Inputs/header-attribs/textual.modulemap | 5 + test/Modules/diagnostics.modulemap | 14 +- test/Modules/header-attribs.cpp | 10 + test/Modules/preprocess-missing.modulemap | 7 + test/Modules/preprocess-module.cpp | 15 +- 20 files changed, 546 insertions(+), 152 deletions(-) create mode 100644 test/Modules/Inputs/header-attribs/bar.h create mode 100644 test/Modules/Inputs/header-attribs/baz.h create mode 100644 test/Modules/Inputs/header-attribs/foo.h create mode 100644 test/Modules/Inputs/header-attribs/modular.modulemap create mode 100644 test/Modules/Inputs/header-attribs/textual.modulemap create mode 100644 test/Modules/header-attribs.cpp create mode 100644 test/Modules/preprocess-missing.modulemap