This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from b9d863c6c [ELF][X86] Allow PT_LOAD to have overlapping p_offset ranges [...] new 0a49d36ee [ELF][ARM] Implement --fix-cortex-a8 to fix erratum 657417
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/AArch64ErrataFix.cpp | 11 +- ELF/ARMErrataFix.cpp | 528 +++++++++++++++++++++++++++++ ELF/{AArch64ErrataFix.h => ARMErrataFix.h} | 19 +- ELF/CMakeLists.txt | 1 + ELF/Config.h | 1 + ELF/Driver.cpp | 4 + ELF/Options.td | 3 + ELF/Writer.cpp | 7 + test/ELF/arm-fix-cortex-a8-blx.s | 33 ++ test/ELF/arm-fix-cortex-a8-nopatch.s | 123 +++++++ test/ELF/arm-fix-cortex-a8-plt.s | 39 +++ test/ELF/arm-fix-cortex-a8-recognize.s | 201 +++++++++++ test/ELF/arm-fix-cortex-a8-thunk.s | 69 ++++ test/ELF/arm-fix-cortex-a8-toolarge.s | 45 +++ 14 files changed, 1068 insertions(+), 16 deletions(-) create mode 100644 ELF/ARMErrataFix.cpp copy ELF/{AArch64ErrataFix.h => ARMErrataFix.h} (67%) create mode 100644 test/ELF/arm-fix-cortex-a8-blx.s create mode 100644 test/ELF/arm-fix-cortex-a8-nopatch.s create mode 100644 test/ELF/arm-fix-cortex-a8-plt.s create mode 100644 test/ELF/arm-fix-cortex-a8-recognize.s create mode 100644 test/ELF/arm-fix-cortex-a8-thunk.s create mode 100644 test/ELF/arm-fix-cortex-a8-toolarge.s