This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9d995c15911 [X86] Fix the lower1BitShuffle code added in r369215 to cor [...] new 1f945277dfd [llvm-objcopy][MachO] Support load commands used in executa [...] new 2f1ee6f74ca [llvm-objcopy][MachO] Implement a layout algorithm for executables
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: .../MachO/basic-executable-copy.test} | 192 +++++++++--- tools/llvm-objcopy/CMakeLists.txt | 1 + tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp | 348 +++++++++++++++++++++ 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 ++ 10 files changed, 726 insertions(+), 262 deletions(-) copy test/tools/{llvm-dwarfdump/uuid.yaml => llvm-objcopy/MachO/basic-executable-c [...] create mode 100644 tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp create mode 100644 tools/llvm-objcopy/MachO/MachOLayoutBuilder.h