This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 915fd73c02d [InstCombine] add tests for shuffle+binop fold; NFC
new 14107a3c418 [llvm-objcopy] Add --build-id-link-dir flag
new 40c46461742 [InstCombine] rearrange shuffle+binop fold; NFC
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/BinaryFormat/ELF.h | 2 +
.../InstCombine/InstructionCombining.cpp | 17 ++---
test/tools/llvm-objcopy/ELF/bad-build-id.test | 21 ++++++
test/tools/llvm-objcopy/ELF/build-id-link-dir.test | 56 ++++++++++++++++
.../llvm-objcopy/ELF/no-build-id-no-notes.test | 11 ++++
test/tools/llvm-objcopy/ELF/no-build-id.test | 21 ++++++
tools/llvm-objcopy/CopyConfig.cpp | 9 ++-
tools/llvm-objcopy/CopyConfig.h | 3 +
tools/llvm-objcopy/ELF/ELFObjcopy.cpp | 77 +++++++++++++++++++++-
tools/llvm-objcopy/ELF/Object.h | 2 +-
tools/llvm-objcopy/ObjcopyOpts.td | 12 ++++
11 files changed, 220 insertions(+), 11 deletions(-)
create mode 100644 test/tools/llvm-objcopy/ELF/bad-build-id.test
create mode 100644 test/tools/llvm-objcopy/ELF/build-id-link-dir.test
create mode 100644 test/tools/llvm-objcopy/ELF/no-build-id-no-notes.test
create mode 100644 test/tools/llvm-objcopy/ELF/no-build-id.test
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang-tools-extra.
from e8a34b70 [clang-tidy] Recommit: Add the abseil-duration-comparison check
new a246e3c1 [clang-tidy] Fix unordered_map failure with specializing std: [...]
The 1 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:
clang-tidy/abseil/DurationComparisonCheck.cpp | 3 +--
clang-tidy/abseil/DurationRewriter.h | 19 +++++++++++++++++++
2 files changed, 20 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from dda0ca0e1ac [Hexagon] Change instruction type field in TSFlags to 7 bits
new 915fd73c02d [InstCombine] add tests for shuffle+binop fold; NFC
The 1 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:
test/Transforms/InstCombine/vec_shuffle.ll | 60 +++++++++++++++++++++++++++++-
1 file changed, 58 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 336e884e771 * config/h8300/h8300.md (<code>qi3_1): Add gcc_unreachable [...]
new edc8c70d5e2 Disallow configuring for powerpc*-*-linux*paired
The 1 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:
gcc/ChangeLog | 5 +++++
gcc/config.gcc | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 4a9bb285e14 [MachineOutliner] Drop candidates that require fixups if it [...]
new bab257c102e [llvm-tapi] initial commit, supports ELF text stubs
new dda0ca0e1ac [Hexagon] Change instruction type field in TSFlags to 7 bits
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/TextAPI/ELF/ELFStub.h | 69 +++++++
include/llvm/TextAPI/ELF/TBEHandler.h | 46 +++++
lib/CMakeLists.txt | 1 +
lib/LLVMBuild.txt | 1 +
lib/Target/Hexagon/HexagonDepITypes.h | 86 +++++----
lib/Target/Hexagon/HexagonDepITypes.td | 88 +++++----
lib/Target/Hexagon/HexagonInstrFormats.td | 72 ++++----
lib/Target/Hexagon/HexagonInstrFormatsV5.td | 30 +--
lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h | 83 ++++-----
lib/TextAPI/CMakeLists.txt | 7 +
lib/TextAPI/ELF/ELFStub.cpp | 29 +++
lib/TextAPI/ELF/TBEHandler.cpp | 176 ++++++++++++++++++
lib/{ => TextAPI}/LLVMBuild.txt | 41 +---
unittests/CMakeLists.txt | 1 +
unittests/TextAPI/CMakeLists.txt | 7 +
unittests/TextAPI/ELFYAMLTest.cpp | 216 ++++++++++++++++++++++
16 files changed, 735 insertions(+), 218 deletions(-)
create mode 100644 include/llvm/TextAPI/ELF/ELFStub.h
create mode 100644 include/llvm/TextAPI/ELF/TBEHandler.h
create mode 100644 lib/TextAPI/CMakeLists.txt
create mode 100644 lib/TextAPI/ELF/ELFStub.cpp
create mode 100644 lib/TextAPI/ELF/TBEHandler.cpp
copy lib/{ => TextAPI}/LLVMBuild.txt (56%)
create mode 100644 unittests/TextAPI/CMakeLists.txt
create mode 100644 unittests/TextAPI/ELFYAMLTest.cpp
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-aarch64-lts-allyesconfig
in repository toolchain/binutils-gdb.
from dd5ce15398 Automatic date update in version.in
adds 6c9af454ab Automatic date update in version.in
No new revisions were added by this update.
Summary of changes:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.