This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 74afe0c677 test/Driver/output-file-cleanup.c: delete non-readable tempo [...] new 84853833c2 [modules] Frontend support for building a header module from [...] new 80e197b92b [modules] Driver support for precompiling a collection of fi [...] new e1fb567d8b [modules] Support use of -E on modules built from the command line.
The 3 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/DiagnosticDriverKinds.td | 3 + include/clang/Basic/DiagnosticFrontendKinds.td | 6 ++ include/clang/Basic/DiagnosticIDs.h | 2 +- include/clang/Basic/DiagnosticSemaKinds.td | 2 + include/clang/Basic/LangOptions.h | 5 +- include/clang/Driver/Action.h | 27 ++++++- include/clang/Driver/CC1Options.td | 2 + include/clang/Frontend/FrontendAction.h | 20 +++++- include/clang/Frontend/FrontendActions.h | 13 ++++ include/clang/Frontend/FrontendOptions.h | 3 + include/clang/Lex/ModuleMap.h | 12 ++-- lib/Driver/Action.cpp | 14 ++++ lib/Driver/Driver.cpp | 82 ++++++++++++++++------ lib/Driver/ToolChain.cpp | 1 + lib/Driver/ToolChains/Clang.cpp | 78 +++++++++++++++----- lib/Driver/Types.cpp | 2 + lib/Frontend/CompilerInstance.cpp | 22 ++---- lib/Frontend/CompilerInvocation.cpp | 3 + lib/Frontend/FrontendAction.cpp | 17 +++-- lib/Frontend/FrontendActions.cpp | 74 ++++++++++++++++++- lib/Frontend/Rewrite/FrontendActions.cpp | 7 +- lib/FrontendTool/ExecuteCompilerInvocation.cpp | 2 + lib/Lex/ModuleMap.cpp | 39 +++++++--- lib/Sema/Sema.cpp | 3 +- lib/Sema/SemaDecl.cpp | 20 +++++- test/Driver/header-module.cpp | 13 ++++ .../Inputs => Modules/Inputs/no-module-map}/a.h | 2 +- .../b.h | 1 + test/Modules/no-module-map.cpp | 48 +++++++++++++ 29 files changed, 438 insertions(+), 85 deletions(-) create mode 100644 test/Driver/header-module.cpp copy test/{Index/Inputs => Modules/Inputs/no-module-map}/a.h (67%) copy test/Modules/Inputs/{libstdcxx-ambiguous-internal => no-module-map}/b.h (82%) create mode 100644 test/Modules/no-module-map.cpp