This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 7f93e6103 [WebAssembly] Add more test coverage for reloctions against s [...] new 40fecdb5f [PPC64] toc-indirect to toc-relative relaxation
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/Arch/PPC64.cpp | 109 +++++++++++++++++++++++++++- ELF/Arch/X86_64.cpp | 4 +- ELF/InputSection.cpp | 7 +- ELF/Relocations.cpp | 12 +-- ELF/Relocations.h | 1 + ELF/Target.cpp | 2 +- ELF/Target.h | 9 ++- test/ELF/Inputs/ppc64-toc-relax-shared.s | 7 ++ test/ELF/Inputs/ppc64-toc-relax.s | 15 ++++ test/ELF/ppc64-func-entry-points.s | 2 +- test/ELF/ppc64-got-indirect.s | 121 ------------------------------- test/ELF/ppc64-relocs.s | 22 +++--- test/ELF/ppc64-toc-relax-constants.s | 61 ++++++++++++++++ test/ELF/ppc64-toc-relax-jumptable.s | 73 +++++++++++++++++++ test/ELF/ppc64-toc-relax.s | 105 +++++++++++++++++++++++++++ 15 files changed, 403 insertions(+), 147 deletions(-) create mode 100644 test/ELF/Inputs/ppc64-toc-relax-shared.s create mode 100644 test/ELF/Inputs/ppc64-toc-relax.s delete mode 100644 test/ELF/ppc64-got-indirect.s create mode 100644 test/ELF/ppc64-toc-relax-constants.s create mode 100644 test/ELF/ppc64-toc-relax-jumptable.s create mode 100644 test/ELF/ppc64-toc-relax.s