This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 6aa1f42be9 Fix uninitialized variable warning in CodeGenPGO constructor. NFCI. new 2b8b74a6ff [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 | 12 +++++++ 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.ifs | 28 +++++++++++++++ .../InterfaceStubs/template-namespace-function.cpp | 2 +- test/InterfaceStubs/weak.cpp | 2 +- test/lit.cfg.py | 4 +-- 31 files changed, 333 insertions(+), 97 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 create mode 100644 test/InterfaceStubs/object.ifs