This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 8786cec Add missing options that were required to crash. new 8694dd6 Update test. new ba95855 ELF: Implement basic support for --version-script.
The 2 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/CMakeLists.txt | 2 +- ELF/Config.h | 2 + ELF/Driver.cpp | 18 ++-- ELF/Driver.h | 1 - ELF/Options.td | 4 +- ELF/{DynamicList.cpp => SymbolListFile.cpp} | 43 +++++++++- ELF/{DynamicList.h => SymbolListFile.h} | 7 +- ELF/SymbolTable.cpp | 16 +++- ELF/SymbolTable.h | 1 + ELF/Symbols.cpp | 31 +++---- ELF/Symbols.h | 5 ++ test/ELF/gc-merge-local-sym.s | 4 +- test/ELF/lto/internalize-version-script.ll | 22 +++++ test/ELF/no-inhibit-exec.s | 2 +- test/ELF/version-script.s | 126 ++++++++++++++++++++++++++++ 15 files changed, 247 insertions(+), 37 deletions(-) rename ELF/{DynamicList.cpp => SymbolListFile.cpp} (61%) rename ELF/{DynamicList.h => SymbolListFile.h} (71%) create mode 100644 test/ELF/lto/internalize-version-script.ll create mode 100644 test/ELF/version-script.s