This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0775d243ea9 [AsmPrinter] Constify needsCFIMoves. NFC new 98f9792e7ca [LLVM][llvm-objcopy] Added basic plumbing to get things started new b905fdae0c2 [libFuzzer] simplify two more tests
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: lib/Fuzzer/test/caller-callee.test | 2 +- lib/Fuzzer/test/reduce_inputs.test | 4 +- test/CMakeLists.txt | 1 + test/tools/llvm-objcopy/basic-copy.test | 47 ++++ test/tools/llvm-objcopy/empty-section.s | 55 +++++ test/tools/llvm-objcopy/program-headers.test | 68 ++++++ tools/LLVMBuild.txt | 1 + tools/llvm-objcopy/CMakeLists.txt | 9 + tools/{ => llvm-objcopy}/LLVMBuild.txt | 43 +--- tools/llvm-objcopy/Object.cpp | 330 +++++++++++++++++++++++++++ tools/llvm-objcopy/Object.h | 148 ++++++++++++ tools/llvm-objcopy/llvm-objcopy.cpp | 99 ++++++++ tools/llvm-objcopy/llvm-objcopy.h | 32 +++ 13 files changed, 798 insertions(+), 41 deletions(-) create mode 100644 test/tools/llvm-objcopy/basic-copy.test create mode 100644 test/tools/llvm-objcopy/empty-section.s create mode 100644 test/tools/llvm-objcopy/program-headers.test create mode 100644 tools/llvm-objcopy/CMakeLists.txt copy tools/{ => llvm-objcopy}/LLVMBuild.txt (53%) create mode 100644 tools/llvm-objcopy/Object.cpp create mode 100644 tools/llvm-objcopy/Object.h create mode 100644 tools/llvm-objcopy/llvm-objcopy.cpp create mode 100644 tools/llvm-objcopy/llvm-objcopy.h