This is an automated email from the git hooks/post-receive script.
Peter Smith pushed a change to branch linaro-local/InitialThumbSupport in repository toolchain/llvm/lld.
discards e6d572c Add support for the static Thumb relocations that are present [...] discards 20a2b2f ARM should define _GLOBAL_OFFSET_TABLE_ to base of .got discards 1f79ed4 Initial support for ARM in lld. adds 6d976bb Fix implicit plt creation on aarch64. adds 41561f4 Add missing REQUIRES. adds 869ed69 Rename adjustRelaxGotExpr. adds 6996ef8 Rename TlsGdToLeSkip. adds f7fa63f Use adjustRelaxExpr for tls relaxations too. adds 812fef1 Implement gd to ie relaxation for aarch64. adds 627d409 Attempt to fix non-determinism in test. adds 5c72653 Include version in --reproduce. adds 3c151fb Move GlobalDynIndex to SymbolBody. adds 9879ad4 Add a missing REQUIRES. adds 98c8d97 add missing REQUIRES adds 232cce9 [ELF] - Assign sh_link field of SHT_GNU_versym section to Dyn [...] adds 029e6f2 Create version.txt in a reproduce archive file. adds b75bd9c Ignore the "globally available" version. adds ef1ff21 Initial support for ARM in lld. adds 2681003 Add missing REQUIRES: arm from test. To fix tests building wi [...] new cb5d1bb Add support for the static Thumb relocations that are present [...]
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (e6d572c) \ N -- N -- N refs/heads/linaro-local/InitialThumbSupport (cb5d1bb)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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/Driver.cpp | 18 +++-- ELF/Driver.h | 2 +- ELF/DriverUtils.cpp | 12 +-- ELF/InputFiles.cpp | 2 +- ELF/InputSection.cpp | 41 +++------- ELF/OutputSections.cpp | 11 ++- ELF/Relocations.cpp | 17 ++-- ELF/Relocations.h | 5 ++ ELF/Symbols.h | 3 +- ELF/Target.cpp | 157 +++++++++++++++++++++++++------------ ELF/Target.h | 6 +- ELF/Writer.cpp | 13 +-- test/ELF/Inputs/aarch64-copy2.s | 5 ++ test/ELF/Inputs/aarch64-tls-gdie.s | 4 + test/ELF/Inputs/version-use.script | 6 ++ test/ELF/Inputs/version-use.so | Bin 0 -> 2720 bytes test/ELF/aarch64-copy2.s | 27 +++++++ test/ELF/aarch64-tls-gdie.s | 34 ++++++++ test/ELF/aarch64-tls-ie.s | 1 + test/ELF/aarch64-tls-static.s | 37 +++++++++ test/ELF/arm-attributes-remove.s | 1 + test/ELF/arm-got-relative.s | 5 +- test/ELF/arm-thumb-branch.s | 41 ++++++++++ test/ELF/lto/save-temps.ll | 1 + test/ELF/reproduce.s | 14 +++- test/ELF/verneed.s | 20 ++++- test/ELF/version-use.s | 9 +++ 27 files changed, 365 insertions(+), 127 deletions(-) create mode 100644 test/ELF/Inputs/aarch64-copy2.s create mode 100644 test/ELF/Inputs/aarch64-tls-gdie.s create mode 100644 test/ELF/Inputs/version-use.script create mode 100755 test/ELF/Inputs/version-use.so create mode 100644 test/ELF/aarch64-copy2.s create mode 100644 test/ELF/aarch64-tls-gdie.s create mode 100644 test/ELF/aarch64-tls-static.s create mode 100644 test/ELF/arm-thumb-branch.s create mode 100644 test/ELF/version-use.s