This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from af90dc572a nss: free dynarray buffer after parsing nsswitch.conf
new 591283a689 manual: Correct return value description of 'clock_nanosleep'
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:
manual/time.texi | 33 ++++++++++++++-------------------
1 file changed, 14 insertions(+), 19 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 main
in repository newlib.
from 25cbb3a28 newlib: riscv: Remove undefined behavior in strlen()
new 0f8bc0d11 RISC-V: setjmp: reduce code size for register load/store with Zilsd
new 1fefd2a45 RISC-V: strcmp: refactor labels for improved readability
new e9ca8cc5f RISC-V: strcmp [speed optimized]: use compressed registers wh [...]
new 4fa6fe31c RISC-V: strcmp [speed optimized]: optimize null detect logic [...]
new 972872c0d RISC-V: strcmp [speed optimized]: optimize mismatch logic for [...]
The 5 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:
newlib/libc/machine/riscv/setjmp.S | 74 +++++++++-----
newlib/libc/machine/riscv/strcmp.S | 194 ++++++++++++++++++++++---------------
2 files changed, 166 insertions(+), 102 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 9197e8eebe3 [gdb/python] Reimplement F405 fix
new 568ec5b9831 gdb: introduce a per-interpreter event servicing method
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/interps.h | 8 ++++++++
gdb/main.c | 2 +-
gdb/top.c | 4 ++--
3 files changed, 11 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 master
in repository gcc.
from a2e1c972050 libstdc++: Implement C++26 std::polymorphic [PR119152]
new 08031b88e2a libstdc++: Pass small trivial types by value in polymorphic [...]
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/include/bits/cpyfunc_impl.h | 4 +++
libstdc++-v3/include/bits/funcref_impl.h | 4 +++
libstdc++-v3/include/bits/funcwrap.h | 20 ++++++++++++-
libstdc++-v3/include/bits/mofunc_impl.h | 4 +++
.../testsuite/20_util/copyable_function/call.cc | 7 +++--
.../testsuite/20_util/copyable_function/conv.cc | 35 ++++++++++++++++++++++
.../20_util/copyable_function/incomplete_neg.cc | 18 +++++++++++
.../testsuite/20_util/function_ref/call.cc | 10 +++----
.../testsuite/20_util/function_ref/conv.cc | 34 +++++++++++++++++++++
.../20_util/function_ref/incomplete_neg.cc | 18 +++++++++++
.../testsuite/20_util/move_only_function/call.cc | 7 +++--
.../testsuite/20_util/move_only_function/conv.cc | 35 ++++++++++++++++++++++
.../20_util/move_only_function/incomplete_neg.cc | 18 +++++++++++
13 files changed, 202 insertions(+), 12 deletions(-)
create mode 100644 libstdc++-v3/testsuite/20_util/copyable_function/incomplete_neg.cc
create mode 100644 libstdc++-v3/testsuite/20_util/function_ref/incomplete_neg.cc
create mode 100644 libstdc++-v3/testsuite/20_util/move_only_function/incomplete_neg.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 gcc.
from 02a6f9a0df1 or1k: Fix struct return test
new a2e1c972050 libstdc++: Implement C++26 std::polymorphic [PR119152]
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/include/bits/indirect.h | 376 ++++++++++++++++++++-
libstdc++-v3/include/bits/version.def | 9 +
libstdc++-v3/include/bits/version.h | 10 +
libstdc++-v3/include/std/memory | 1 +
.../std/memory/{indirect => polymorphic}/copy.cc | 78 +++--
.../memory/{indirect => polymorphic}/copy_alloc.cc | 132 +++++---
.../std/memory/{indirect => polymorphic}/ctor.cc | 92 +++--
.../testsuite/std/memory/polymorphic/ctor_poly.cc | 220 ++++++++++++
.../testsuite/std/memory/polymorphic/incomplete.cc | 13 +
.../std/memory/polymorphic/invalid_neg.cc | 28 ++
.../std/memory/{indirect => polymorphic}/move.cc | 73 ++--
.../memory/{indirect => polymorphic}/move_alloc.cc | 147 +++++---
12 files changed, 987 insertions(+), 192 deletions(-)
copy libstdc++-v3/testsuite/std/memory/{indirect => polymorphic}/copy.cc (56%)
copy libstdc++-v3/testsuite/std/memory/{indirect => polymorphic}/copy_alloc.cc (57%)
copy libstdc++-v3/testsuite/std/memory/{indirect => polymorphic}/ctor.cc (63%)
create mode 100644 libstdc++-v3/testsuite/std/memory/polymorphic/ctor_poly.cc
create mode 100644 libstdc++-v3/testsuite/std/memory/polymorphic/incomplete.cc
create mode 100644 libstdc++-v3/testsuite/std/memory/polymorphic/invalid_neg.cc
copy libstdc++-v3/testsuite/std/memory/{indirect => polymorphic}/move.cc (60%)
copy libstdc++-v3/testsuite/std/memory/{indirect => polymorphic}/move_alloc.cc (61%)
--
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 8287861f7ca testsuite: Add tls_link effective target
new 2588ef7423a or1k: Support long jump offsets with -mcmodel=large
new 02a6f9a0df1 or1k: Fix struct return test
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/config/or1k/or1k.opt | 4 ++--
gcc/config/or1k/predicates.md | 3 ++-
gcc/doc/invoke.texi | 7 ++++---
gcc/testsuite/gcc.target/or1k/call-1.c | 22 ++++++++++++++++++++++
gcc/testsuite/gcc.target/or1k/got-1.c | 18 ++++++++++++++++++
gcc/testsuite/gcc.target/or1k/return-2.c | 2 +-
6 files changed, 49 insertions(+), 7 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/or1k/call-1.c
create mode 100644 gcc/testsuite/gcc.target/or1k/got-1.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 releases/gcc-15
in repository gcc.
from 21e0a742e7b Fortran: Fix handling of parsed format strings.
new fff23f42e89 fortran: Fix debug info for unsigned(kind=1) and unsigned(k [...]
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/fortran/trans-types.cc | 31 ++++++++++++++------------
gcc/testsuite/gfortran.dg/guality/pr120193.f90 | 26 +++++++++++++++++++++
2 files changed, 43 insertions(+), 14 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/guality/pr120193.f90
--
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-13
in repository gcc.
from 62f4b3d0669 Daily bump.
new 6c1684e124f Fortran: Fix gimplification error on assignment to pointer [...]
new 0bead22a867 Fortran: Suppress failing part of testcase [PR109345]
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/fortran/trans-expr.cc | 16 ++++++++--------
gcc/testsuite/gfortran.dg/assign_12.f90 | 28 ++++++++++++++++++++++++++++
gcc/testsuite/gfortran.dg/pr109345.f90 | 5 ++---
3 files changed, 38 insertions(+), 11 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/assign_12.f90
--
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-12
in repository gcc.
from 922ade5302d Daily bump.
new 42fd3cc4306 Fortran: Suppress failing part of testcase [PR109345]
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/testsuite/gfortran.dg/pr109345.f90 | 4 ++--
1 file changed, 2 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 main
in repository newlib.
from 04f4da794 Cygwin: doc: Update "building DLLs" section
new 25cbb3a28 newlib: riscv: Remove undefined behavior in strlen()
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:
newlib/libc/machine/riscv/strlen.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.