This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0fafc38823 [Tooling] Make clang-tool find libc++ dir on mac when runnin [...] new 24cbd12df6 [MSP430] Provide a toolchain description
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/Basic/DiagnosticDriverKinds.td | 11 + include/clang/Basic/MSP430Target.def | 247 +++++++++++++++++++++ include/clang/Driver/Options.td | 1 + include/clang/module.modulemap | 1 + lib/CodeGen/CodeGenModule.cpp | 6 +- lib/Driver/CMakeLists.txt | 1 + lib/Driver/Driver.cpp | 5 + lib/Driver/ToolChains/Clang.cpp | 3 + lib/Driver/ToolChains/Gnu.cpp | 34 +++ lib/Driver/ToolChains/MSP430.cpp | 233 +++++++++++++++++++ .../ToolChains/{RISCVToolchain.h => MSP430.h} | 46 ++-- .../Inputs/basic_msp430_tree/bin/msp430-elf-ld | 0 .../lib/gcc/msp430-elf/7.3.1/430}/crtbegin.o | 0 .../lib/gcc/msp430-elf/7.3.1/430}/crtend.o | 0 .../basic_msp430_tree/msp430-elf/lib/430/crt0.o | 0 .../msp430-elf/lib/430}/crtn.o | 0 test/Driver/msp430-hwmult.c | 42 ++++ test/Driver/msp430-mmcu.c | 16 ++ test/Driver/msp430-toolchain.c | 78 +++++++ test/Driver/no-integrated-as.c | 7 +- 20 files changed, 704 insertions(+), 27 deletions(-) create mode 100644 include/clang/Basic/MSP430Target.def create mode 100644 lib/Driver/ToolChains/MSP430.cpp copy lib/Driver/ToolChains/{RISCVToolchain.h => MSP430.h} (60%) copy bindings/python/tests/__init__.py => test/Driver/Inputs/basic_msp430_tree/bin [...] mode change 100644 => 100755 copy test/Driver/Inputs/{ami_linux_tree/usr/lib/gcc/x86_64-amazon-linux/7 => basic [...] copy test/Driver/Inputs/{ami_linux_tree/usr/lib/gcc/x86_64-amazon-linux/7 => basic [...] copy bindings/python/tests/__init__.py => test/Driver/Inputs/basic_msp430_tree/msp [...] copy test/Driver/Inputs/{ami_linux_tree/usr/lib64 => basic_msp430_tree/msp430-elf/ [...] create mode 100644 test/Driver/msp430-hwmult.c create mode 100644 test/Driver/msp430-mmcu.c create mode 100644 test/Driver/msp430-toolchain.c