This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from b75bd9c Ignore the "globally available" version. new ef1ff21 Initial support for ARM in lld.
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: ELF/Driver.cpp | 2 + ELF/InputFiles.cpp | 5 + ELF/Target.cpp | 171 +++++++++++++++++++++ test/ELF/Inputs/arm-plt-reloc.s | 14 ++ test/ELF/Inputs/far-arm-abs.s | 13 ++ .../{relocation-copy.s => relocation-copy-arm.s} | 6 +- test/ELF/arm-abs32-dyn.s | 32 ++++ test/ELF/arm-attributes-remove.s | 44 ++++++ test/ELF/arm-branch-error.s | 19 +++ test/ELF/arm-branch.s | 59 +++++++ test/ELF/arm-copy.s | 81 ++++++++++ test/ELF/arm-data-prel.s | 63 ++++++++ test/ELF/arm-data-relocs.s | 20 +++ test/ELF/arm-fpic-got.s | 63 ++++++++ test/ELF/arm-gnu-ifunc-nosym.s | 27 ++++ test/ELF/arm-gnu-ifunc.s | 131 ++++++++++++++++ test/ELF/arm-got-relative.s | 53 +++++++ test/ELF/arm-gotoff.s | 74 +++++++++ test/ELF/arm-mov-relocs.s | 53 +++++++ test/ELF/arm-plt-reloc.s | 90 +++++++++++ 20 files changed, 1017 insertions(+), 3 deletions(-) create mode 100644 test/ELF/Inputs/arm-plt-reloc.s create mode 100644 test/ELF/Inputs/far-arm-abs.s copy test/ELF/Inputs/{relocation-copy.s => relocation-copy-arm.s} (73%) create mode 100644 test/ELF/arm-abs32-dyn.s create mode 100644 test/ELF/arm-attributes-remove.s create mode 100644 test/ELF/arm-branch-error.s create mode 100644 test/ELF/arm-branch.s create mode 100644 test/ELF/arm-copy.s create mode 100644 test/ELF/arm-data-prel.s create mode 100644 test/ELF/arm-data-relocs.s create mode 100644 test/ELF/arm-fpic-got.s create mode 100644 test/ELF/arm-gnu-ifunc-nosym.s create mode 100644 test/ELF/arm-gnu-ifunc.s create mode 100644 test/ELF/arm-got-relative.s create mode 100644 test/ELF/arm-gotoff.s create mode 100644 test/ELF/arm-mov-relocs.s create mode 100644 test/ELF/arm-plt-reloc.s