This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 114ca002d Cleanup: llvm::bsearch -> llvm::partition_point after r364719 new 89214e88f [ELF][RISCV] Support PLT, GOT, copy and relative relocations new 23c2ee520 [ELF][RISCV] Support GD/LD/IE/LE TLS models
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: ELF/Arch/RISCV.cpp | 154 ++++++++++++++++++++- ELF/InputSection.cpp | 5 +- ELF/Relocations.cpp | 2 +- test/ELF/riscv-plt.s | 103 ++++++++++++++ test/ELF/riscv-reloc-64-pic.s | 10 ++ test/ELF/riscv-reloc-copy.s | 23 +++ test/ELF/riscv-reloc-got.s | 65 +++++++++ test/ELF/riscv-tls-gd.s | 124 +++++++++++++++++ test/ELF/riscv-tls-ie.s | 82 +++++++++++ test/ELF/riscv-tls-ld.s | 90 ++++++++++++ test/ELF/riscv-tls-le.s | 41 ++++++ .../{ppc32-abs-pic.s => riscv32-reloc-32-pic.s} | 12 +- .../{ppc32-abs-pic.s => riscv64-reloc-64-pic.s} | 16 +-- 13 files changed, 708 insertions(+), 19 deletions(-) create mode 100644 test/ELF/riscv-plt.s create mode 100644 test/ELF/riscv-reloc-64-pic.s create mode 100644 test/ELF/riscv-reloc-copy.s create mode 100644 test/ELF/riscv-reloc-got.s create mode 100644 test/ELF/riscv-tls-gd.s create mode 100644 test/ELF/riscv-tls-ie.s create mode 100644 test/ELF/riscv-tls-ld.s create mode 100644 test/ELF/riscv-tls-le.s copy test/ELF/{ppc32-abs-pic.s => riscv32-reloc-32-pic.s} (59%) copy test/ELF/{ppc32-abs-pic.s => riscv64-reloc-64-pic.s} (55%)