This is an automated email from the git hooks/post-receive script.
Peter Smith pushed a change to branch linaro-local/InterworkVeneers in repository toolchain/llvm/lld.
discards 1adffcf First implementation of new Thunk interface for MIPS and ARM. discards f524559 First implementation of Thunks module discards fcb8fbd Add support for relocations to PLT entries. We need to accoun [...] discards e7df451 Add basic ARM/Thumb interworking veneer support for non-PLT e [...] discards 2771838 Initial support for interworking veneers add support for movt [...] adds 5a47cce [lld][MachO] Remove stray comment. adds b493fa9 [yaml2obj] Updating LLD tests to account for LLVM r273915 adds cb2432f8 [yaml2obj] One more missing test case update from r273915 adds 5aea9ad [yaml2obj] Hopefully the last test case update from r273915 adds 6713238 [ELF] Warn for duplicate symbols in version scripts instead o [...] adds 2c79b2d [ELF] - Implemented --no-undefined-version flag adds c8a6039 [ELF] - Implemented support of default/non-default symbols versions adds 651b96a [ELF] - Remove Config->ZDefs flag. new af834c3 Initial support for interworking veneers add support for movt [...] new e10486b Add basic ARM/Thumb interworking veneer support for non-PLT e [...] new d06ab14 Add support for relocations to PLT entries. We need to accoun [...] new be6394d First implementation of Thunks module new 739d3d1 First implementation of new Thunk interface for MIPS and ARM.
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 (1adffcf) \ N -- N -- N refs/heads/linaro-local/InterworkVeneers (739d3d1)
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 5 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/Config.h | 2 +- ELF/Driver.cpp | 5 +- ELF/InputSection.cpp | 1 + ELF/Options.td | 4 +- ELF/Relocations.cpp | 13 +- ELF/SymbolTable.cpp | 52 ++++- ELF/Symbols.cpp | 8 + ELF/Symbols.h | 10 +- ELF/Thunks.cpp | 63 +++--- ELF/Thunks.h | 8 +- ELF/Writer.cpp | 5 +- lib/ReaderWriter/MachO/File.h | 2 - test/COFF/Inputs/armnt-executable.obj.yaml | 2 +- test/COFF/Inputs/export.yaml | 2 +- test/COFF/Inputs/export2.yaml | 2 +- test/COFF/Inputs/hello32.yaml | 2 +- test/COFF/Inputs/import.yaml | 2 +- test/COFF/Inputs/include1a.yaml | 2 +- test/COFF/Inputs/include1b.yaml | 2 +- test/COFF/Inputs/include1c.yaml | 2 +- test/COFF/Inputs/machine-x64.yaml | 2 +- test/COFF/Inputs/machine-x86.yaml | 2 +- test/COFF/Inputs/ret42.yaml | 2 +- test/COFF/alternatename.test | 2 +- test/COFF/ar-comdat.test | 2 +- test/COFF/armnt-blx23t.test | 2 +- test/COFF/armnt-branch24t.test | 2 +- test/COFF/armnt-imports.test | 2 +- test/COFF/armnt-mov32t-exec.test | 2 +- test/COFF/armnt-movt32t.test | 2 +- test/COFF/base.test | 2 +- test/COFF/baserel.test | 2 +- test/COFF/common.test | 2 +- test/COFF/conflict.test | 2 +- test/COFF/debug.test | 2 +- test/COFF/entry-inference.test | 2 +- test/COFF/entry-inference2.test | 2 +- test/COFF/entry-inference32.test | 2 +- test/COFF/entry-mangled.test | 2 +- test/COFF/export32.test | 2 +- test/COFF/force.test | 2 +- test/COFF/icf-circular.test | 2 +- test/COFF/icf-circular2.test | 2 +- test/COFF/icf-different-align.test | 2 +- test/COFF/icf-local.test | 2 +- test/COFF/icf-simple.test | 2 +- test/COFF/imports-mangle.test | 2 +- test/COFF/include.test | 2 +- test/COFF/internal.test | 2 +- test/COFF/invalid-obj.test | 2 +- test/COFF/loadcfg.test | 2 +- test/COFF/loadcfg32.test | 2 +- test/COFF/locally-imported.test | 2 +- test/COFF/locally-imported32.test | 2 +- test/COFF/long-section-name.test | 2 +- test/COFF/merge.test | 2 +- test/COFF/opt.test | 2 +- test/COFF/reloc-arm.test | 2 +- test/COFF/reloc-x64.test | 2 +- test/COFF/reloc-x86.test | 2 +- test/COFF/safeseh.test | 2 +- test/COFF/section.test | 2 +- test/COFF/seh.test | 2 +- test/COFF/sort-debug.test | 2 +- test/COFF/subsystem-inference.test | 2 +- test/COFF/symtab.test | 2 +- test/COFF/tls.test | 2 +- test/COFF/tls32.test | 2 +- test/COFF/unwind.test | 2 +- test/COFF/weak-external.test | 2 +- test/COFF/weak-external2.test | 2 +- test/COFF/weak-external3.test | 2 +- test/ELF/Inputs/verdef-defaultver.s | 22 ++ test/ELF/arm-thumb-interwork-thunk.s | 344 ++++++++++++++++++++++------- test/ELF/eh-frame-type.test | 3 +- test/ELF/invalid-relocations.test | 3 +- test/ELF/mips-jalr.test | 3 +- test/ELF/section-align-0.test | 3 +- test/ELF/verdef-defaultver.s | 210 ++++++++++++++++++ test/ELF/version-script-noundef.s | 22 ++ test/ELF/version-script.s | 6 +- 81 files changed, 695 insertions(+), 214 deletions(-) create mode 100644 test/ELF/Inputs/verdef-defaultver.s create mode 100644 test/ELF/verdef-defaultver.s create mode 100644 test/ELF/version-script-noundef.s