This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d8450eac7b Fix crash when checking a dependently-typed reference that i [...] new d9cb70af7c [clang-ifs] Clang Interface Stubs, first version. new aaaf2d3063 [Remarks][Driver] Use the specified format in the remarks fi [...]
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: docs/UsersManual.rst | 4 +- include/clang/Basic/DiagnosticFrontendKinds.td | 2 + include/clang/Driver/Options.td | 3 + include/clang/Driver/Types.def | 1 + include/clang/Frontend/FrontendActions.h | 20 ++ include/clang/Frontend/FrontendOptions.h | 4 + lib/Driver/Driver.cpp | 3 + lib/Driver/ToolChains/Clang.cpp | 29 +- lib/Driver/ToolChains/Darwin.cpp | 8 +- lib/Frontend/CMakeLists.txt | 2 + lib/Frontend/CompilerInvocation.cpp | 21 ++ lib/Frontend/InterfaceStubFunctionsConsumer.cpp | 379 +++++++++++++++++++++ lib/FrontendTool/ExecuteCompilerInvocation.cpp | 4 + test/Driver/darwin-ld.c | 2 +- test/Driver/opt-record.c | 1 + test/InterfaceStubs/bad-format.cpp | 7 + .../class-template-specialization.cpp | 42 +++ test/InterfaceStubs/externstatic.c | 29 ++ .../function-template-specialization.cpp | 41 +++ test/InterfaceStubs/hidden-class-inheritance.cpp | 153 +++++++++ test/InterfaceStubs/inline.c | 67 ++++ test/InterfaceStubs/inline.h | 4 + test/InterfaceStubs/object.cpp | 13 + .../InterfaceStubs/template-namespace-function.cpp | 31 ++ test/InterfaceStubs/virtual.cpp | 41 +++ test/InterfaceStubs/visibility.cpp | 45 +++ test/InterfaceStubs/weak.cpp | 27 ++ 27 files changed, 979 insertions(+), 4 deletions(-) create mode 100644 lib/Frontend/InterfaceStubFunctionsConsumer.cpp create mode 100644 test/InterfaceStubs/bad-format.cpp create mode 100644 test/InterfaceStubs/class-template-specialization.cpp create mode 100644 test/InterfaceStubs/externstatic.c create mode 100644 test/InterfaceStubs/function-template-specialization.cpp create mode 100644 test/InterfaceStubs/hidden-class-inheritance.cpp create mode 100644 test/InterfaceStubs/inline.c create mode 100644 test/InterfaceStubs/inline.h create mode 100644 test/InterfaceStubs/object.cpp create mode 100644 test/InterfaceStubs/template-namespace-function.cpp create mode 100644 test/InterfaceStubs/virtual.cpp create mode 100644 test/InterfaceStubs/visibility.cpp create mode 100644 test/InterfaceStubs/weak.cpp