This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4b91de2870a MemTag: stack initializer merging. new 15e0472c7b2 Recommit "[llvm-objcopy][MachO] Support load commands used [...] new 7d8acbb761d Fixed placement of llvm.global_dtors on Windows. new 24ff1aa337f Refactor isPointerOffset (NFC).
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/ValueTracking.h | 10 +- lib/Analysis/ValueTracking.cpp | 43 ++- lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 3 +- lib/Target/AArch64/AArch64StackTagging.cpp | 14 +- lib/Transforms/Scalar/MemCpyOptimizer.cpp | 14 +- ...ctor-priority-coff.ll => dtor-priority-coff.ll} | 21 +- tools/llvm-objcopy/CMakeLists.txt | 1 + tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp | 322 +++++++++++++++++++++ tools/llvm-objcopy/MachO/MachOLayoutBuilder.h | 50 ++++ tools/llvm-objcopy/MachO/MachOObjcopy.cpp | 6 +- tools/llvm-objcopy/MachO/MachOReader.cpp | 41 +++ tools/llvm-objcopy/MachO/MachOReader.h | 3 + tools/llvm-objcopy/MachO/MachOWriter.cpp | 301 +++++++------------ tools/llvm-objcopy/MachO/MachOWriter.h | 19 +- tools/llvm-objcopy/MachO/Object.h | 27 ++ 15 files changed, 616 insertions(+), 259 deletions(-) copy test/CodeGen/X86/{ctor-priority-coff.ll => dtor-priority-coff.ll} (71%) create mode 100644 tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp create mode 100644 tools/llvm-objcopy/MachO/MachOLayoutBuilder.h