This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 5023262 NFC, Add a test that ensures that we don't emit helper code i [...] new 5c2bf86 NFC, Remove commented out block of code from CGBlocks.cpp new 9049fa8 [Driver] Move architecture-specific free helper functions to [...]
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: lib/CodeGen/CGBlocks.cpp | 18 - lib/Driver/Arch/AArch64.cpp | 196 ++++++ lib/Driver/Arch/ARM.cpp | 445 ++++++++++++++ lib/Driver/Arch/Mips.cpp | 397 ++++++++++++ lib/Driver/Arch/PPC.cpp | 134 ++++ lib/Driver/Arch/Sparc.cpp | 100 +++ lib/Driver/Arch/SystemZ.cpp | 41 ++ lib/Driver/Arch/X86.cpp | 173 ++++++ lib/Driver/CMakeLists.txt | 9 +- lib/Driver/Tools.cpp | 1416 +------------------------------------------ lib/Driver/Tools.h | 57 ++ 11 files changed, 1584 insertions(+), 1402 deletions(-) create mode 100644 lib/Driver/Arch/AArch64.cpp create mode 100644 lib/Driver/Arch/ARM.cpp create mode 100644 lib/Driver/Arch/Mips.cpp create mode 100644 lib/Driver/Arch/PPC.cpp create mode 100644 lib/Driver/Arch/Sparc.cpp create mode 100644 lib/Driver/Arch/SystemZ.cpp create mode 100644 lib/Driver/Arch/X86.cpp