This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 052562edff1 Update the coding standards with the new file header. new db7d6cefe9f [llvm-objcopy] [COFF] Rename a test from .yaml to .test. NFC. new a495c9ae6fb [llvm-objcopy] [COFF] Remove a superfluous namespace qualif [...] new 65866eb3aa6 [llvm-objcopy] [COFF] Add a testcase for patching the debug [...] new 2ccafacb7dd [llvm-objcopy] [COFF] Add support for removing sections new 2b6e1b7585d [llvm-objcopy] [COFF] Implement --strip-debug new 526aa2e9435 [llvm-objcopy] [COFF] Implement --only-keep-debug new 17dcf25b3ad [llvm-objcopy] [COFF] Implement --only-section
The 7 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: .../COFF/Inputs/only-keep-sections.yaml | 77 ++++++++ test/tools/llvm-objcopy/COFF/only-keep-debug.test | 58 ++++++ test/tools/llvm-objcopy/COFF/only-section.test | 21 +++ test/tools/llvm-objcopy/COFF/patch-debug-dir.test | 64 +++++++ test/tools/llvm-objcopy/COFF/remove-section.test | 210 +++++++++++++++++++++ .../COFF/{strip-all.yaml => strip-all.test} | 0 test/tools/llvm-objcopy/COFF/strip-debug.test | 109 +++++++++++ tools/llvm-objcopy/COFF/COFFObjcopy.cpp | 39 +++- tools/llvm-objcopy/COFF/Object.cpp | 73 +++++++ tools/llvm-objcopy/COFF/Object.h | 28 ++- tools/llvm-objcopy/COFF/Reader.cpp | 31 ++- tools/llvm-objcopy/COFF/Writer.cpp | 68 +++++-- tools/llvm-objcopy/COFF/Writer.h | 1 + 13 files changed, 759 insertions(+), 20 deletions(-) create mode 100644 test/tools/llvm-objcopy/COFF/Inputs/only-keep-sections.yaml create mode 100644 test/tools/llvm-objcopy/COFF/only-keep-debug.test create mode 100644 test/tools/llvm-objcopy/COFF/only-section.test create mode 100644 test/tools/llvm-objcopy/COFF/patch-debug-dir.test create mode 100644 test/tools/llvm-objcopy/COFF/remove-section.test rename test/tools/llvm-objcopy/COFF/{strip-all.yaml => strip-all.test} (100%) create mode 100644 test/tools/llvm-objcopy/COFF/strip-debug.test