This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 3a325ba85 [ELF] Enable createThunks to be called more than once. new 99588fea8 Split Target.cpp into small files.
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 | 374 ++++++++ ELF/Arch/AMDGPU.cpp | 82 ++ ELF/Arch/ARM.cpp | 432 +++++++++ ELF/Arch/AVR.cpp | 59 ++ ELF/Arch/Mips.cpp | 422 +++++++++ ELF/Arch/PPC.cpp | 63 ++ ELF/Arch/PPC64.cpp | 215 +++++ ELF/Arch/X86.cpp | 363 ++++++++ ELF/Arch/X86_64.cpp | 468 ++++++++++ ELF/CMakeLists.txt | 9 + ELF/Target.cpp | 2379 +------------------------------------------------- ELF/Target.h | 47 +- 12 files changed, 2572 insertions(+), 2341 deletions(-) create mode 100644 ELF/Arch/AArch64.cpp create mode 100644 ELF/Arch/AMDGPU.cpp create mode 100644 ELF/Arch/ARM.cpp create mode 100644 ELF/Arch/AVR.cpp create mode 100644 ELF/Arch/Mips.cpp create mode 100644 ELF/Arch/PPC.cpp create mode 100644 ELF/Arch/PPC64.cpp create mode 100644 ELF/Arch/X86.cpp create mode 100644 ELF/Arch/X86_64.cpp