This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b6a5316 [libFuzzer] simplify the code a bit new 537523b Move llvm::canBeOmittedFromSymbolTable() to Analysis. new 8dc921e Move llvm::emitLinkerFlagsForGlobalCOFF() to Mangler. new 957cbf8 Re-apply r299168 and r299169 now that the libdeps are fixed.
The 3 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/ObjectUtils.h | 42 +++ include/llvm/CodeGen/Analysis.h | 7 - .../llvm/CodeGen/TargetLoweringObjectFileImpl.h | 3 - include/llvm/IR/Mangler.h | 4 + include/llvm/LTO/LTO.h | 209 ++++----------- include/llvm/Object/IRSymtab.h | 298 +++++++++++++++++++++ lib/CodeGen/Analysis.cpp | 19 -- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 1 + lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 31 --- lib/IR/Mangler.cpp | 32 +++ lib/LTO/LTO.cpp | 213 ++++++--------- lib/LTO/LTOModule.cpp | 4 +- lib/Object/CMakeLists.txt | 1 + lib/Object/IRSymtab.cpp | 228 ++++++++++++++++ tools/gold/gold-plugin.cpp | 4 +- 15 files changed, 741 insertions(+), 355 deletions(-) create mode 100644 include/llvm/Analysis/ObjectUtils.h create mode 100644 include/llvm/Object/IRSymtab.h create mode 100644 lib/Object/IRSymtab.cpp