This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from af4c09fbb73 [llvm-objcopy] Strip debug sections when running with --str [...] new 7b27133646a [MustExec] Add a generic "must-be-executed-context" explorer new 5fc15cac7f9 [ThinLTO] Fix handling of weak interposable symbols
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: include/llvm/Analysis/MustExecute.h | 285 ++++++++++++++++++++- include/llvm/Analysis/Passes.h | 7 + include/llvm/InitializePasses.h | 1 + include/llvm/LTO/LTO.h | 4 +- include/llvm/LinkAllPasses.h | 1 + lib/Analysis/Analysis.cpp | 1 + lib/Analysis/MustExecute.cpp | 118 +++++++++ lib/LTO/LTO.cpp | 18 +- lib/LTO/ThinLTOCodeGenerator.cpp | 46 +++- lib/Transforms/IPO/FunctionImport.cpp | 35 +-- .../MustExecute/must_be_executed_context.ll | 282 ++++++++++++++++++++ .../Resolution/X86/not-prevailing-weak-aliasee.ll | 33 +++ .../X86/Inputs/internalize.ll} | 4 +- test/ThinLTO/X86/internalize.ll | 35 ++- 14 files changed, 824 insertions(+), 46 deletions(-) create mode 100644 test/Analysis/MustExecute/must_be_executed_context.ll create mode 100644 test/LTO/Resolution/X86/not-prevailing-weak-aliasee.ll copy test/{Transforms/FunctionImport/Inputs/funcimport_resolved2.ll => ThinLTO/X86 [...]