This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d418a91 revert 278334 new 2d320e5 Restore "Resolution-based LTO API."
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/LTO/Config.h | 172 +++ include/llvm/LTO/LTO.h | 328 +++++- include/llvm/LTO/LTOBackend.h | 51 + lib/LTO/CMakeLists.txt | 1 + lib/LTO/LLVMBuild.txt | 2 +- lib/LTO/LTO.cpp | 536 +++++++++- lib/LTO/LTOBackend.cpp | 284 +++++ lib/Object/IRObjectFile.cpp | 2 +- test/CMakeLists.txt | 1 + test/LTO/Resolution/X86/Inputs/alias-1.ll | 4 + test/LTO/Resolution/X86/Inputs/comdat.ll | 28 + test/LTO/Resolution/X86/alias.ll | 22 + test/{tools/gold => LTO/Resolution}/X86/comdat.ll | 29 +- test/LTO/{ => Resolution}/X86/lit.local.cfg | 0 test/lit.cfg | 1 + test/tools/gold/X86/coff.ll | 2 +- test/tools/gold/X86/comdat.ll | 80 +- test/tools/gold/X86/common.ll | 10 +- test/tools/gold/X86/emit-llvm.ll | 51 +- test/tools/gold/X86/opt-level.ll | 6 +- test/tools/gold/X86/parallel.ll | 5 +- test/tools/gold/X86/slp-vectorize.ll | 2 +- test/tools/gold/X86/start-lib-common.ll | 2 +- test/tools/gold/X86/strip_names.ll | 2 +- test/tools/gold/X86/thinlto.ll | 10 +- test/tools/gold/X86/thinlto_alias.ll | 10 +- test/tools/gold/X86/thinlto_internalize.ll | 2 +- test/tools/gold/X86/thinlto_linkonceresolution.ll | 6 +- test/tools/gold/X86/thinlto_weak_resolution.ll | 13 +- test/tools/gold/X86/type-merge2.ll | 2 +- test/tools/gold/X86/vectorize.ll | 2 +- test/tools/gold/X86/visibility.ll | 4 +- test/tools/llvm-lto2/errors.ll | 11 + tools/gold/gold-plugin.cpp | 1171 ++++----------------- tools/llvm-lto2/CMakeLists.txt | 10 + {lib/LTO => tools/llvm-lto2}/LLVMBuild.txt | 25 +- tools/llvm-lto2/llvm-lto2.cpp | 168 +++ 37 files changed, 1982 insertions(+), 1073 deletions(-) create mode 100644 include/llvm/LTO/Config.h create mode 100644 include/llvm/LTO/LTOBackend.h create mode 100644 lib/LTO/LTOBackend.cpp create mode 100644 test/LTO/Resolution/X86/Inputs/alias-1.ll create mode 100644 test/LTO/Resolution/X86/Inputs/comdat.ll create mode 100644 test/LTO/Resolution/X86/alias.ll copy test/{tools/gold => LTO/Resolution}/X86/comdat.ll (67%) copy test/LTO/{ => Resolution}/X86/lit.local.cfg (100%) create mode 100644 test/tools/llvm-lto2/errors.ll create mode 100644 tools/llvm-lto2/CMakeLists.txt copy {lib/LTO => tools/llvm-lto2}/LLVMBuild.txt (67%) create mode 100644 tools/llvm-lto2/llvm-lto2.cpp