This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 6063d6fb4 [ELF] Delete R_PPC64_CALL_PLT from isRelExpr() new a76b44f79 [ELF][AArch64] Support for BTI and PAC
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/AArch64.cpp | 158 ++++++++++++++- ELF/Config.h | 2 + ELF/Driver.cpp | 30 ++- ELF/InputFiles.cpp | 11 +- ELF/Options.td | 6 + ELF/SyntheticSections.cpp | 18 +- docs/ld.lld.1 | 4 + test/ELF/Inputs/aarch64-addrifunc.s | 8 + test/ELF/Inputs/aarch64-bti1.s | 19 ++ test/ELF/Inputs/aarch64-btipac1.s | 19 ++ test/ELF/Inputs/{x86-64-cet3.s => aarch64-func2.s} | 3 + test/ELF/Inputs/aarch64-func3-bti.s | 16 ++ test/ELF/Inputs/aarch64-func3-btipac.s | 16 ++ test/ELF/Inputs/aarch64-func3-pac.s | 16 ++ test/ELF/Inputs/aarch64-func3.s | 5 + test/ELF/Inputs/{x86-64-cet3.s => aarch64-nobti.s} | 3 + test/ELF/Inputs/{x86-64-cet3.s => aarch64-nopac.s} | 3 + test/ELF/Inputs/aarch64-pac1.s | 19 ++ test/ELF/aarch64-bti-pac-cli-error.s | 12 ++ test/ELF/aarch64-feature-bti.s | 218 +++++++++++++++++++++ test/ELF/aarch64-feature-btipac.s | 142 ++++++++++++++ test/ELF/aarch64-feature-pac.s | 129 ++++++++++++ test/ELF/aarch64-ifunc-bti.s | 65 ++++++ ...elocatable.s => aarch64-property-relocatable.s} | 14 +- 24 files changed, 917 insertions(+), 19 deletions(-) create mode 100644 test/ELF/Inputs/aarch64-addrifunc.s create mode 100644 test/ELF/Inputs/aarch64-bti1.s create mode 100644 test/ELF/Inputs/aarch64-btipac1.s copy test/ELF/Inputs/{x86-64-cet3.s => aarch64-func2.s} (51%) create mode 100644 test/ELF/Inputs/aarch64-func3-bti.s create mode 100644 test/ELF/Inputs/aarch64-func3-btipac.s create mode 100644 test/ELF/Inputs/aarch64-func3-pac.s create mode 100644 test/ELF/Inputs/aarch64-func3.s copy test/ELF/Inputs/{x86-64-cet3.s => aarch64-nobti.s} (51%) copy test/ELF/Inputs/{x86-64-cet3.s => aarch64-nopac.s} (51%) create mode 100644 test/ELF/Inputs/aarch64-pac1.s create mode 100644 test/ELF/aarch64-bti-pac-cli-error.s create mode 100644 test/ELF/aarch64-feature-bti.s create mode 100644 test/ELF/aarch64-feature-btipac.s create mode 100644 test/ELF/aarch64-feature-pac.s create mode 100644 test/ELF/aarch64-ifunc-bti.s copy test/ELF/{x86-property-relocatable.s => aarch64-property-relocatable.s} (66%)