This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from f1b8248349 [OPENMP50]Allow functions in declare variant directive to ha [...] new 60b59529cc [clang][ifs] Clang Interface Stubs ToolChain plumbing.
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: include/clang/Driver/Action.h | 12 +++++++ include/clang/Driver/Options.td | 3 ++ include/clang/Driver/Phases.h | 3 +- include/clang/Driver/ToolChain.h | 2 ++ include/clang/Driver/Types.def | 3 +- lib/Driver/Action.cpp | 6 ++++ lib/Driver/CMakeLists.txt | 1 + lib/Driver/Driver.cpp | 36 +++++++++++++++---- lib/Driver/Phases.cpp | 1 + lib/Driver/ToolChain.cpp | 10 ++++++ lib/Driver/ToolChains/Clang.cpp | 25 +++----------- lib/Driver/ToolChains/InterfaceStubs.cpp | 37 ++++++++++++++++++++ lib/Driver/ToolChains/InterfaceStubs.h | 36 +++++++++++++++++++ lib/Driver/Types.cpp | 18 +++++++++- lib/Frontend/CompilerInvocation.cpp | 23 +++++++------ test/InterfaceStubs/bad-format.cpp | 21 +++++------- .../class-template-specialization.cpp | 4 +-- test/InterfaceStubs/conflict-type.ifs | 16 +++++++++ test/InterfaceStubs/driver-test.c | 11 ++++++ test/InterfaceStubs/externstatic.c | 26 ++++++-------- test/InterfaceStubs/func.ifs | 40 ++++++++++++++++++++++ .../function-template-specialization.cpp | 8 +++-- test/InterfaceStubs/inline.c | 33 ++++++++---------- test/InterfaceStubs/merge-conflict-test.c | 3 ++ test/InterfaceStubs/object-double.c | 5 +++ test/InterfaceStubs/object-float.c | 3 ++ test/InterfaceStubs/object.c | 7 ++++ test/InterfaceStubs/object.cpp | 14 -------- test/InterfaceStubs/object.ifs | 28 +++++++++++++++ .../InterfaceStubs/template-namespace-function.cpp | 2 +- test/InterfaceStubs/weak.cpp | 2 +- test/lit.cfg.py | 4 +-- 32 files changed, 332 insertions(+), 111 deletions(-) create mode 100644 lib/Driver/ToolChains/InterfaceStubs.cpp create mode 100644 lib/Driver/ToolChains/InterfaceStubs.h create mode 100644 test/InterfaceStubs/conflict-type.ifs create mode 100644 test/InterfaceStubs/driver-test.c create mode 100644 test/InterfaceStubs/func.ifs create mode 100644 test/InterfaceStubs/merge-conflict-test.c create mode 100644 test/InterfaceStubs/object-double.c create mode 100644 test/InterfaceStubs/object-float.c create mode 100644 test/InterfaceStubs/object.c delete mode 100644 test/InterfaceStubs/object.cpp create mode 100644 test/InterfaceStubs/object.ifs