This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from df1d4745258 [RuntimeDyld][MachO/ARM] Don't add a redundant relocation entry. new d888646bf4e llvm: add llvm-dlltool support to the archiver
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: include/llvm/Object/COFFModuleDefinition.h | 7 +- .../llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h | 24 ++++ lib/Object/ArchiveWriter.cpp | 3 +- lib/Object/COFFImportFile.cpp | 114 +++++++++++++-- lib/Object/COFFModuleDefinition.cpp | 22 ++- lib/Object/COFFObjectFile.cpp | 5 +- lib/ToolDrivers/CMakeLists.txt | 1 + lib/ToolDrivers/LLVMBuild.txt | 2 +- lib/ToolDrivers/llvm-dlltool/CMakeLists.txt | 9 ++ lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp | 160 +++++++++++++++++++++ lib/ToolDrivers/{ => llvm-dlltool}/LLVMBuild.txt | 10 +- lib/ToolDrivers/llvm-dlltool/Options.td | 26 ++++ test/CMakeLists.txt | 1 + test/DllTool/coff-exports.def | 13 ++ test/DllTool/coff-weak-exports.def | 19 +++ test/DllTool/lit.local.cfg | 1 + tools/llvm-ar/CMakeLists.txt | 2 + tools/llvm-ar/llvm-ar.cpp | 6 +- 18 files changed, 393 insertions(+), 32 deletions(-) create mode 100644 include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h create mode 100644 lib/ToolDrivers/llvm-dlltool/CMakeLists.txt create mode 100644 lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp copy lib/ToolDrivers/{ => llvm-dlltool}/LLVMBuild.txt (80%) create mode 100644 lib/ToolDrivers/llvm-dlltool/Options.td create mode 100644 test/DllTool/coff-exports.def create mode 100644 test/DllTool/coff-weak-exports.def create mode 100644 test/DllTool/lit.local.cfg