This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 55371ce3e71 [AArch64] add missing pattern for insert_subvector undef
new 4d09eef8ec5 Revert r326932: [DebugInfo] Support DWARF expressions in eh_frame
new 6b4f6ae0915 [AArch64] Adjust the cost of integer vector division
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/DebugInfo/DWARF/DWARFDataExtractor.h | 7 -
include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h | 278 +----------
include/llvm/DebugInfo/DWARF/DWARFExpression.h | 14 +-
include/llvm/Support/ScopedPrinter.h | 2 -
lib/DebugInfo/DWARF/DWARFContext.cpp | 12 +-
lib/DebugInfo/DWARF/DWARFDataExtractor.cpp | 69 ---
lib/DebugInfo/DWARF/DWARFDebugFrame.cpp | 545 ++++++++++++++-------
lib/DebugInfo/DWARF/DWARFExpression.cpp | 5 +-
lib/ObjectYAML/ELFYAML.cpp | 1 -
lib/Target/AArch64/AArch64TargetTransformInfo.cpp | 60 ++-
test/Analysis/CostModel/AArch64/div.ll | 38 ++
.../Inputs/dwarf-exprs.exe-x86-64.yaml | 46 --
test/tools/llvm-readobj/unwind.test | 170 -------
tools/llvm-readobj/CMakeLists.txt | 1 -
tools/llvm-readobj/DwarfCFIEHPrinter.h | 244 ---------
tools/llvm-readobj/ELFDumper.cpp | 6 -
16 files changed, 465 insertions(+), 1033 deletions(-)
create mode 100644 test/Analysis/CostModel/AArch64/div.ll
delete mode 100644 test/tools/llvm-readobj/Inputs/dwarf-exprs.exe-x86-64.yaml
delete mode 100644 test/tools/llvm-readobj/unwind.test
delete mode 100644 tools/llvm-readobj/DwarfCFIEHPrinter.h
--
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 008f97d4 [clangd] Remove unused field in HandlerRegisterer
new 86622a73 [Documentation] Fix Clang-tidy checks list broken in r326909.
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:
docs/clang-tidy/checks/list.rst | 2 +-
1 file changed, 1 insertion(+), 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 clang.
from 843ace7a25 [OpenMP] Remove implicit data sharing code gen that aims to [...]
new b16500ae70 [analyzer] Don't crash with assertion failure on structured [...]
new 9062e07a82 [analyzer] [PointerArithChecker] do not warn on indexes into [...]
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/StaticAnalyzer/Checkers/PointerArithChecker.cpp | 4 ++++
lib/StaticAnalyzer/Core/ExprEngine.cpp | 7 ++++++-
test/Analysis/ptr-arith.c | 6 ++++++
test/Analysis/structured_bindings.cc | 10 ++++++++++
4 files changed, 26 insertions(+), 1 deletion(-)
create mode 100644 test/Analysis/structured_bindings.cc
--
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 openmp.
from ec2d186 Improve OpenMP threadprivate implementation.
new ee4efa4 [OpenMP] Remove implicit data sharing using device shared mem [...]
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:
libomptarget/deviceRTLs/nvptx/src/interface.h | 3 +-
libomptarget/deviceRTLs/nvptx/src/omp_data.cu | 5 ---
.../deviceRTLs/nvptx/src/omptarget-nvptx.cu | 6 ----
.../deviceRTLs/nvptx/src/omptarget-nvptx.h | 40 ----------------------
libomptarget/deviceRTLs/nvptx/src/option.h | 4 ---
libomptarget/deviceRTLs/nvptx/src/parallel.cu | 8 -----
6 files changed, 1 insertion(+), 65 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 2bc4193b4d5 Revert "[llvm-objcopy] Add support for large indexes"
new 55371ce3e71 [AArch64] add missing pattern for insert_subvector undef
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:
lib/Target/AArch64/AArch64InstrInfo.td | 33 +++++++++++++---------
.../AArch64/aarch64-insert-subvector-undef.ll | 21 ++++++++++++++
2 files changed, 40 insertions(+), 14 deletions(-)
create mode 100644 test/CodeGen/AArch64/aarch64-insert-subvector-undef.ll
--
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.
from 8e23619931 CodeGen: Fix address space of indirect function argument
new 843ace7a25 [OpenMP] Remove implicit data sharing code gen that aims to [...]
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:
lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 212 ++++-------------------------
lib/CodeGen/CGOpenMPRuntimeNVPTX.h | 11 --
test/OpenMP/nvptx_data_sharing.cpp | 57 --------
test/OpenMP/nvptx_parallel_codegen.cpp | 22 +--
test/OpenMP/nvptx_target_teams_codegen.cpp | 4 +-
5 files changed, 39 insertions(+), 267 deletions(-)
delete mode 100644 test/OpenMP/nvptx_data_sharing.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.
unknown user pushed a change to branch master
in repository gcc.
from d0e2b7e7303 * lambda.c (is_capture_proxy_with_ref): Remove.
new d345897dad0 * doc/contrib.texi: Add entries for Martin Liska, David Ma [...]
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 | 7 +++++++
gcc/doc/contrib.texi | 51 +++++++++++++++++++++++++++++++++++++++++++++++----
2 files changed, 54 insertions(+), 4 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 clang.
from 48e9e5d6ad [clang-format] Break consecutive string literals in text protos
new 8e23619931 CodeGen: Fix address space of indirect function argument
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:
lib/CodeGen/CGAtomic.cpp | 2 +-
lib/CodeGen/CGCall.cpp | 196 +++++++++++++++++-----------
lib/CodeGen/CGCall.h | 50 ++++++-
lib/CodeGen/CGClass.cpp | 8 +-
lib/CodeGen/CGDecl.cpp | 16 +++
lib/CodeGen/CGExprCXX.cpp | 8 +-
lib/CodeGen/CGGPUBuiltin.cpp | 13 +-
lib/CodeGen/CGObjCGNU.cpp | 2 +-
lib/CodeGen/CGObjCMac.cpp | 4 +-
lib/CodeGen/CodeGenFunction.h | 4 +-
lib/CodeGen/ItaniumCXXABI.cpp | 3 +-
lib/CodeGen/MicrosoftCXXABI.cpp | 3 +-
test/CodeGenCXX/amdgcn-func-arg.cpp | 94 +++++++++++++
test/CodeGenOpenCL/addr-space-struct-arg.cl | 39 +++++-
test/CodeGenOpenCL/byval.cl | 1 -
15 files changed, 332 insertions(+), 111 deletions(-)
create mode 100644 test/CodeGenCXX/amdgcn-func-arg.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.
unknown user pushed a change to branch master
in repository clang-tools-extra.
from 2c369a29 do not register matcher for objc-only checks when analyzing n [...]
new 008f97d4 [clangd] Remove unused field in HandlerRegisterer
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:
clangd/ClangdLSPServer.cpp | 2 +-
clangd/ProtocolHandlers.cpp | 4 +---
clangd/ProtocolHandlers.h | 2 +-
3 files changed, 3 insertions(+), 5 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 clang.
from 84305dfe2e Correct the alignment for the PS4 target
new 48e9e5d6ad [clang-format] Break consecutive string literals in text protos
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:
lib/Format/TokenAnnotator.cpp | 3 ++-
unittests/Format/FormatTestTextProto.cpp | 6 ++++++
2 files changed, 8 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.