This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 4065bf7c2c6 libstdc++: Add workaround for read(2) EINVAL on macOS and F [...]
new 5a507b5108d aarch64: Add @ to aarch64_get_lane<mode>
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/config/aarch64/aarch64-simd.md | 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 glibc.
from b602f60f5e s390x: Regenerated ULPs.
new 569cfaaf49 AArch64: Improve codegen in AdvSIMD pow
new 8eb5ad2ebc AArch64: Improve codegen in AdvSIMD logs
new ca0c0d0f26 AArch64: Improve codegen in users of ADVSIMD log1p helper
new 13a7ef5999 AArch64: Improve codegen in users of ADVSIMD expm1 helper
The 4 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:
sysdeps/aarch64/fpu/acosh_advsimd.c | 5 +-
sysdeps/aarch64/fpu/atanh_advsimd.c | 26 +++++---
sysdeps/aarch64/fpu/expm1_advsimd.c | 68 ++++----------------
sysdeps/aarch64/fpu/log10_advsimd.c | 79 +++++++++++++----------
sysdeps/aarch64/fpu/log1p_advsimd.c | 105 ++++++-------------------------
sysdeps/aarch64/fpu/log2_advsimd.c | 73 ++++++++++++---------
sysdeps/aarch64/fpu/log_advsimd.c | 94 ++++++++++++++-------------
sysdeps/aarch64/fpu/pow_advsimd.c | 115 ++++++++++++++++++----------------
sysdeps/aarch64/fpu/sinh_advsimd.c | 69 +++++---------------
sysdeps/aarch64/fpu/tanh_advsimd.c | 62 ++++--------------
sysdeps/aarch64/fpu/v_expm1_inline.h | 97 ++++++++++++++++++++++++++++
sysdeps/aarch64/fpu/v_expm1f_inline.h | 1 -
sysdeps/aarch64/fpu/v_log1p_inline.h | 84 ++++++++++++++++---------
13 files changed, 430 insertions(+), 448 deletions(-)
create mode 100644 sysdeps/aarch64/fpu/v_expm1_inline.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 gcc.
from 80bb28cb233 libstdc++: Remove std::allocator::is_always_equal typedef f [...]
new 4065bf7c2c6 libstdc++: Add workaround for read(2) EINVAL on macOS and F [...]
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:
libstdc++-v3/config/io/basic_file_stdio.cc | 6 ++++++
libstdc++-v3/config/os/bsd/darwin/os_defines.h | 3 +++
libstdc++-v3/config/os/bsd/freebsd/os_defines.h | 3 +++
3 files changed, 12 insertions(+)
--
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 devel/rust/master
in repository gcc.
from 9e079406295 gccrs: fix crash in hir dump
new 6374da82b72 lang-items: Store NodeId mappings for lang items
new 6b7e055ecc9 lang-items: Add lang-items AST collector
new 72081086d6b attributes: Add class for sharing methods on attributes.
new 1995c838083 type-check: Remove unused capture in nr2.0
new e6e62d48237 Fix ForeverStack::find_starting_point output parameter
new b1273464c26 ci: Update expected warnings list for 32 bits build.
new d2025fe536d ast: Add LangItemPath class
new 3630428e545 derive(Copy): Use new LangItemPath
new 3d2f58db040 hir: Start adapting visitors to accept multiple kinds of Paths
new d812c793ef1 nr1.0: Resolve lang item paths properly.
new 625c811ed50 hir: Lower lang-item paths
new c0513af26dc nr2.0: Resolve lang item paths properly.
new ed1b4d72d9b lang-item: Remove unused NodeId from LangItemPath
The 13 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:
.github/alpine_32bit_log_warnings | 26 +-------
gcc/rust/Make-lang.in | 3 +-
gcc/rust/ast/rust-ast.cc | 4 +-
gcc/rust/ast/rust-collect-lang-items.cc | 86 +++++++++++++++++++++++++
gcc/rust/ast/rust-collect-lang-items.h | 58 +++++++++++++++++
gcc/rust/ast/rust-item.h | 35 ++++++++--
gcc/rust/ast/rust-path.cc | 3 +-
gcc/rust/ast/rust-path.h | 77 +++++++++++++---------
gcc/rust/expand/rust-derive-copy.cc | 6 +-
gcc/rust/hir/rust-ast-lower-base.cc | 10 +--
gcc/rust/hir/rust-ast-lower-type.cc | 42 ++++++++++--
gcc/rust/hir/rust-ast-lower-type.h | 7 +-
gcc/rust/resolve/rust-ast-resolve-item.cc | 30 +++++++--
gcc/rust/resolve/rust-ast-resolve-type.h | 35 ++++++++++
gcc/rust/resolve/rust-forever-stack.h | 3 +-
gcc/rust/resolve/rust-forever-stack.hxx | 13 ++--
gcc/rust/resolve/rust-late-name-resolver-2.0.cc | 20 ++++++
gcc/rust/resolve/rust-late-name-resolver-2.0.h | 1 +
gcc/rust/rust-session-manager.cc | 3 +
gcc/rust/typecheck/rust-hir-type-check-type.cc | 6 +-
gcc/rust/util/rust-attributes.cc | 9 +++
gcc/rust/util/rust-attributes.h | 6 ++
gcc/rust/util/rust-hir-map.cc | 22 +++++++
gcc/rust/util/rust-hir-map.h | 8 +++
24 files changed, 418 insertions(+), 95 deletions(-)
create mode 100644 gcc/rust/ast/rust-collect-lang-items.cc
create mode 100644 gcc/rust/ast/rust-collect-lang-items.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 gcc.
from 3537aa694d7 [committed] RISC-V testsuite changes to test clmul expansio [...]
new 6fbe9e65645 libstdc++: Fix debug containers for constant evaluation [PR117962]
new 80bb28cb233 libstdc++: Remove std::allocator::is_always_equal typedef f [...]
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:
libstdc++-v3/include/bits/allocator.h | 4 ++++
libstdc++-v3/include/debug/safe_container.h | 11 +++++++----
.../testsuite/20_util/allocator/requirements/typedefs.cc | 14 +++++++++++---
libstdc++-v3/testsuite/20_util/allocator/void.cc | 4 +++-
.../testsuite/23_containers/vector/bool/cons/constexpr.cc | 4 ++++
.../testsuite/23_containers/vector/cons/constexpr.cc | 4 ++++
6 files changed, 33 insertions(+), 8 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 binutils-gdb.
from fea53b8bb57 Include gdbsupport/gdb_vecs.h in gdb/s390-linux-nat.c
new 4f719a08a8a [gdb/syscalls] Generate aarch64-linux.xml.in in update-linu [...]
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:
gdb/syscalls/update-linux-from-src.sh | 50 ++++++++++++++++++++++++++++++++++-
gdb/syscalls/update-linux.sh | 2 +-
2 files changed, 50 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 releases/gcc-14
in repository gcc.
from ac054467bf4 tree-eh: Don't crash on GIMPLE_TRY_FINALLY with empty clean [...]
new 7b58a7e27af s390: Fix UNSPEC_CC_TO_INT canonicalization
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/config/s390/s390.cc | 2 +-
gcc/testsuite/gcc.target/s390/ccusage.c | 37 +++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+), 1 deletion(-)
create mode 100644 gcc/testsuite/gcc.target/s390/ccusage.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 gcc.
from bdc572f9a42 s390: Fix UNSPEC_CC_TO_INT canonicalization
new 75e481c711c Assign separate timevar to duplicate computed goto pass
new 91bdaf659d2 Free RTL SSA after late-combine
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/bb-reorder.cc | 2 +-
gcc/late-combine.cc | 4 ++++
gcc/timevar.def | 1 +
3 files changed, 6 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 binutils-gdb.
from 038590b067b gdbserver: remove 'struct' in 'struct thread_info' declarations
new fea53b8bb57 Include gdbsupport/gdb_vecs.h in gdb/s390-linux-nat.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:
gdb/s390-linux-nat.c | 1 +
1 file changed, 1 insertion(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.