This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 58a331a982f Use TempFile in lto caching. new c8be5de456a [InstCombine] trunc (binop X, C) --> binop (trunc X, C') new 7198b606433 [llvm-objcopy] Change -O binary to respect section removal [...]
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/Transforms/InstCombine/InstCombineCasts.cpp | 21 ++- test/Transforms/InstCombine/pr33765.ll | 5 +- test/Transforms/InstCombine/trunc-binop-ext.ll | 102 +++++------ .../llvm-objcopy/binary-first-seg-offset-zero.test | 34 ++++ .../llvm-objcopy/binary-remove-all-but-one.test | 46 +++++ test/tools/llvm-objcopy/binary-remove-end.test | 47 +++++ test/tools/llvm-objcopy/binary-remove-middle.test | 48 ++++++ test/tools/llvm-objcopy/parent-loop-check.test | 50 ++++++ test/tools/llvm-objcopy/two-seg-remove-end.test | 61 +++++++ test/tools/llvm-objcopy/two-seg-remove-first.test | 61 +++++++ .../llvm-objcopy/two-seg-remove-third-sec.test | 62 +++++++ tools/llvm-objcopy/Object.cpp | 192 ++++++++++++++------- 12 files changed, 598 insertions(+), 131 deletions(-) create mode 100644 test/tools/llvm-objcopy/binary-first-seg-offset-zero.test create mode 100644 test/tools/llvm-objcopy/binary-remove-all-but-one.test create mode 100644 test/tools/llvm-objcopy/binary-remove-end.test create mode 100644 test/tools/llvm-objcopy/binary-remove-middle.test create mode 100644 test/tools/llvm-objcopy/parent-loop-check.test create mode 100644 test/tools/llvm-objcopy/two-seg-remove-end.test create mode 100644 test/tools/llvm-objcopy/two-seg-remove-first.test create mode 100644 test/tools/llvm-objcopy/two-seg-remove-third-sec.test