This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 9eb1a44 [ELF] - Do not error out when version declaration not found w [...] new 4ebaa70 Add Thunk support framework for ARM and Mips
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/CMakeLists.txt | 1 + ELF/InputSection.cpp | 25 ++- ELF/InputSection.h | 7 +- ELF/Relocations.cpp | 26 ++- ELF/Relocations.h | 4 +- ELF/Symbols.cpp | 31 ++- ELF/Symbols.h | 10 +- ELF/Target.cpp | 88 ++++++-- ELF/Target.h | 15 +- ELF/Thunks.cpp | 251 +++++++++++++++++++++++ ELF/Thunks.h | 55 +++++ test/ELF/arm-mov-relocs.s | 37 ++++ test/ELF/arm-thumb-interwork-thunk.s | 375 +++++++++++++++++++++++++++++++++++ 13 files changed, 861 insertions(+), 64 deletions(-) create mode 100644 ELF/Thunks.cpp create mode 100644 ELF/Thunks.h create mode 100644 test/ELF/arm-thumb-interwork-thunk.s