This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from dd81b33a6 [LLD][ELF] - Add a test for elf::getPriority(StringRef S) new 9e54d1599 Support RISC-V
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/RISCV.cpp | 277 +++++++++++++++++++++++++++++++++++++++++ ELF/CMakeLists.txt | 1 + ELF/Driver.cpp | 5 +- ELF/InputSection.cpp | 34 +++++ ELF/InputSection.h | 2 + ELF/Relocations.cpp | 5 + ELF/Relocations.h | 16 +++ ELF/Symbols.cpp | 1 + ELF/Symbols.h | 3 + ELF/Target.cpp | 2 + ELF/Target.h | 1 + ELF/Writer.cpp | 9 ++ test/ELF/riscv-branch.test | 119 ++++++++++++++++++ test/ELF/riscv-call.test | 95 ++++++++++++++ test/ELF/riscv-hi20-lo12.test | 86 +++++++++++++ test/ELF/riscv-jal-error.test | 93 ++++++++++++++ test/ELF/riscv-jal.test | 161 ++++++++++++++++++++++++ test/ELF/riscv-pcrel-hilo.test | 103 +++++++++++++++ test/lit.cfg.py | 1 + 19 files changed, 1013 insertions(+), 1 deletion(-) create mode 100644 ELF/Arch/RISCV.cpp create mode 100644 test/ELF/riscv-branch.test create mode 100644 test/ELF/riscv-call.test create mode 100644 test/ELF/riscv-hi20-lo12.test create mode 100644 test/ELF/riscv-jal-error.test create mode 100644 test/ELF/riscv-jal.test create mode 100644 test/ELF/riscv-pcrel-hilo.test