This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0cb391043b5 ExecutionEngine: add R_AARCH64_ABS{16,32} new 46f29ab9593 [llvm-objcopy] Add support for nested and overlapping segments new 3796a45d298 Re-land "Fix Bug 30978 by emitting cv file checksums."
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: include/llvm/IR/DebugInfoMetadata.h | 10 +- include/llvm/MC/MCCodeView.h | 36 +++++-- include/llvm/MC/MCObjectStreamer.h | 1 + include/llvm/MC/MCStreamer.h | 14 ++- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 20 ++-- lib/IR/DebugInfoMetadata.cpp | 2 + lib/MC/MCAsmStreamer.cpp | 28 +++++- lib/MC/MCCodeView.cpp | 121 +++++++++++++++++------ lib/MC/MCObjectStreamer.cpp | 3 + lib/MC/MCParser/AsmParser.cpp | 47 +++++++-- lib/MC/MCStreamer.cpp | 7 +- test/DebugInfo/COFF/inlining.ll | 6 +- test/DebugInfo/COFF/multifile.ll | 58 +++++++++-- test/DebugInfo/COFF/simple.ll | 28 +++++- test/MC/AArch64/coff-debug.ll | 2 +- test/tools/llvm-objcopy/adjacent-segments.test | 62 ++++++++++++ test/tools/llvm-objcopy/identical-segments.test | 82 ++++++++++++++++ test/tools/llvm-objcopy/overlap-chain.test | 117 ++++++++++++++++++++++ test/tools/llvm-objcopy/pt-phdr.test | 71 ++++++++++++++ test/tools/llvm-objcopy/triple-overlap.test | 123 ++++++++++++++++++++++++ tools/llvm-objcopy/Object.cpp | 72 ++++++++++++-- tools/llvm-objcopy/Object.h | 1 + unittests/IR/MetadataTest.cpp | 3 +- 23 files changed, 827 insertions(+), 87 deletions(-) create mode 100644 test/tools/llvm-objcopy/adjacent-segments.test create mode 100644 test/tools/llvm-objcopy/identical-segments.test create mode 100644 test/tools/llvm-objcopy/overlap-chain.test create mode 100644 test/tools/llvm-objcopy/pt-phdr.test create mode 100644 test/tools/llvm-objcopy/triple-overlap.test