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 88e473e Add support for the static Thumb relocations that are present [...] adds 6efebfd Use StringSwitch. NFC. adds e4a2058 Merge duplicate code. NFC. adds 38d02c0 Define a helper function to get a relocation name. NFC. adds 2b98bfe Remove break after return. adds a3c48da [ELF] - Tweak verneed.s test to use new llvm-readobj functionality adds 4e0d89d [ELF] - Replaced hardcode with named constants. NFC. adds 6587f0e [ELF] - Replaced one more hardcode with named constant. NFC. adds 0304735 [ELF] Simplify shouldMerge() result calculation. NFC. adds 87a79b8 [ELF] Replace getELFRelocationTypeName() calls with getRelNam [...] adds baf0f32 [ELF] - Fixed mistype in comment. NFC. adds c94a924 [ELF] - Removed includeInGnuHashTable() function. NFC. adds ee2a7b3 Move a function declaration to a header. adds db56bd6 Handle gd tls relocs pointing to local symbols. adds 1950276 Update to match LLVM r272232. new 63fe4f4 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 (88e473e) \ N -- N -- N refs/heads/linaro-local/InitialThumbSupport (63fe4f4)
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 | 49 +++++----- ELF/InputFiles.cpp | 8 +- ELF/OutputSections.cpp | 15 +-- ELF/Relocations.cpp | 28 +++--- ELF/Target.cpp | 90 +++++++++++------- ELF/Target.h | 1 + test/ELF/Inputs/arm-thumb-blx-targets.s | 20 ++++ test/ELF/Inputs/far-arm-thumb-abs.s | 24 +++++ test/ELF/arm-blx.s | 87 +++++++++++++++++ test/ELF/arm-thumb-blx.s | 63 +++++++++++++ ...arm-branch-error.s => arm-thumb-branch-error.s} | 12 +-- test/ELF/verneed.s | 103 ++++++++++++++++----- test/ELF/x86-64-tls-gd-local.s | 52 +++++++++++ tools/lld/lld.cpp | 2 +- 14 files changed, 431 insertions(+), 123 deletions(-) create mode 100644 test/ELF/Inputs/arm-thumb-blx-targets.s create mode 100644 test/ELF/Inputs/far-arm-thumb-abs.s create mode 100644 test/ELF/arm-blx.s create mode 100644 test/ELF/arm-thumb-blx.s copy test/ELF/{arm-branch-error.s => arm-thumb-branch-error.s} (50%) create mode 100644 test/ELF/x86-64-tls-gd-local.s