This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from ed47094986e * ChangeLog: Add missing entry. * testsuite/ChangeLog: Ditto.
new d6cc2ec2183 * cp-tree.def (OVERLOAD): Fix comment. * cp-tree.h: Fix c [...]
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/cp/ChangeLog | 18 ++++++++++++++++++
gcc/cp/cp-tree.def | 3 +--
gcc/cp/cp-tree.h | 8 +++++---
gcc/cp/error.c | 7 +++----
gcc/cp/name-lookup.c | 41 ++++++++++++++++-------------------------
gcc/cp/name-lookup.h | 3 +--
gcc/cp/pt.c | 5 +++--
7 files changed, 47 insertions(+), 38 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 825457abaab [CodeView] Add more DebugSubsection implementations.
new 79654737d7d [Hexagon] Improve code generation for 32x32-bit multiplication
new 7aecbf8e991 [InstCombine] Add test cases to show missed opportunities t [...]
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/Target/Hexagon/HexagonISelDAGToDAG.cpp | 189 +++++++++++++----------------
lib/Target/Hexagon/HexagonISelLowering.cpp | 6 +-
lib/Target/Hexagon/HexagonPatterns.td | 59 +++++----
test/CodeGen/Hexagon/mul64-sext.ll | 93 ++++++++++++++
test/Transforms/InstCombine/ctpop.ll | 16 +++
test/Transforms/InstCombine/intrinsics.ll | 28 +++++
6 files changed, 252 insertions(+), 139 deletions(-)
create mode 100644 test/CodeGen/Hexagon/mul64-sext.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 gcc.
from 1b144f1382f gimplify_modify_expr: avoid DECL_DEBUG_EXPR links across functions
new c8bc2197519 PR target/80833 * config/i386/constraints.md (Yd): New co [...]
new ed47094986e * ChangeLog: Add missing entry. * testsuite/ChangeLog: Ditto.
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:
gcc/ChangeLog | 11 ++++
gcc/config/i386/constraints.md | 26 ++++++++-
gcc/config/i386/i386.md | 91 ++++++++++++++++++++++++++-----
gcc/testsuite/ChangeLog | 6 ++
gcc/testsuite/gcc.target/i386/pr80833-1.c | 12 ++++
gcc/testsuite/gcc.target/i386/pr80833-2.c | 12 ++++
6 files changed, 143 insertions(+), 15 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/i386/pr80833-1.c
create mode 100644 gcc/testsuite/gcc.target/i386/pr80833-2.c
--
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 f0c3d71794d [AMDGPU] Allow SDWA in instructions with immediates and SGPRs
new 5e57487f271 [SelectionDAG] Remove special case for ISD::FPOWI from the [...]
new 825457abaab [CodeView] Add more DebugSubsection implementations.
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/CodeView/CodeView.h | 20 +++++++
.../DebugInfo/CodeView/DebugChecksumsSubsection.h | 13 +++--
.../DebugInfo/CodeView/DebugFrameDataSubsection.h | 59 +++++++++++++++++++++
.../CodeView/DebugInlineeLinesSubsection.h | 5 +-
.../llvm/DebugInfo/CodeView/DebugLinesSubsection.h | 8 +--
...{StringTable.h => DebugStringTableSubsection.h} | 39 +++++++++-----
include/llvm/DebugInfo/CodeView/DebugSubsection.h | 8 ++-
.../DebugInfo/CodeView/DebugSymbolsSubsection.h | 53 +++++++++++++++++++
.../DebugInfo/CodeView/SymbolVisitorDelegate.h | 4 +-
include/llvm/DebugInfo/PDB/Native/PDBStringTable.h | 4 +-
.../DebugInfo/PDB/Native/PDBStringTableBuilder.h | 10 ++--
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 4 --
lib/DebugInfo/CodeView/CMakeLists.txt | 8 +--
.../CodeView/DebugChecksumsSubsection.cpp | 13 +++--
.../CodeView/DebugFrameDataSubsection.cpp | 44 ++++++++++++++++
.../CodeView/DebugInlineeLinesSubsection.cpp | 6 +--
lib/DebugInfo/CodeView/DebugLinesSubsection.cpp | 8 +--
...ingTable.cpp => DebugStringTableSubsection.cpp} | 27 ++++++----
lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp | 2 +-
lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp | 34 ++++++++++++
lib/DebugInfo/CodeView/SymbolDumper.cpp | 6 +--
tools/llvm-readobj/COFFDumper.cpp | 61 +++++++++++-----------
tools/llvm-readobj/CodeView.h | 54 -------------------
23 files changed, 337 insertions(+), 153 deletions(-)
create mode 100644 include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
rename include/llvm/DebugInfo/CodeView/{StringTable.h => DebugStringTableSubsectio [...]
create mode 100644 include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
create mode 100644 lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
rename lib/DebugInfo/CodeView/{StringTable.cpp => DebugStringTableSubsection.cpp} (61%)
create mode 100644 lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
delete mode 100644 tools/llvm-readobj/CodeView.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.
from 1c50ce32c7 [OPENMP] Allow 'use_device_ptr' clause in 'target data' alone.
new a841e133b3 Reverting Neon vector type 64-alignment fix
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/Basic/Targets.cpp | 5 -----
test/CodeGen/arm-abi-vector.c | 14 +++++++-------
test/CodeGen/arm-neon-misc.c | 8 --------
test/CodeGen/arm-swiftcall.c | 8 ++++----
test/CodeGen/armv7k-abi.c | 6 +++---
5 files changed, 14 insertions(+), 27 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 384602a9e40 [SelectionDAG] Set ISD::FPOWI to Expand by default
new 6781296ab73 [AMDGPU] Require waitcnt before barrier for all targets [...]
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/AMDGPU/AMDGPUSubtarget.h | 2 +-
test/CodeGen/AMDGPU/llvm.amdgcn.s.barrier.ll | 3 +--
2 files changed, 2 insertions(+), 3 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 hjl/ifunc/c
in repository glibc.
at a89f56e004 x86-64: Add memmove.h
This branch includes the following new commits:
new a89f56e004 x86-64: Add memmove.h
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.
--
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 91321d9884 [libclang] Allow to suspend a translation unit.
new 1c50ce32c7 [OPENMP] Allow 'use_device_ptr' clause in 'target data' alone.
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:
include/clang/Basic/DiagnosticSemaKinds.td | 4 +--
lib/Sema/SemaOpenMP.cpp | 43 +++++++++++------------
test/OpenMP/target_data_messages.c | 2 +-
test/OpenMP/target_enter_data_map_messages.c | 2 +-
test/OpenMP/target_enter_data_nowait_messages.cpp | 2 +-
test/OpenMP/target_exit_data_map_messages.c | 2 +-
test/OpenMP/target_exit_data_nowait_messages.cpp | 2 +-
test/OpenMP/target_map_messages.cpp | 2 +-
test/OpenMP/target_teams_map_messages.cpp | 2 +-
9 files changed, 29 insertions(+), 32 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.