This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from cfd7c54bdfe testsuite: arm: Add pattern for armv8-m.base to cmse-15.c test
new 81bcf412c1c libatomic: Cleanup AArch64 ifunc selection
new d201715989c c++: add fixed test [PR118391]
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/testsuite/g++.dg/cpp2a/lambda-uneval20.C | 15 ++++++
libatomic/config/linux/aarch64/host-config.h | 76 +++++++++++++---------------
2 files changed, 50 insertions(+), 41 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-uneval20.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-13
in repository gcc.
from 005b1f41835 c++: wrong std::is_convertible with cv-qual fn [PR109680]
new a2fd45adfdb c++: concept in default argument [PR109859]
new 9ad64458dd8 c++: ICE with temporary of class type in array DMI [PR109966]
new c2581c76c07 c++: ICE with reference NSDMI [PR114854]
The 3 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/call.cc | 6 +--
gcc/cp/parser.cc | 9 +++-
gcc/cp/typeck2.cc | 55 ++++++++-----------------
gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr20.C | 17 ++++++++
gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr21.C | 59 +++++++++++++++++++++++++++
gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr22.C | 12 ++++++
gcc/testsuite/g++.dg/cpp2a/concepts-defarg3.C | 8 ++++
gcc/testsuite/g++.dg/cpp2a/lambda-targ8.C | 10 +++++
8 files changed, 130 insertions(+), 46 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr20.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr21.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr22.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-defarg3.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-targ8.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 glibc.
from c3d1dac96b malloc: obscure calloc use in tst-calloc
new 4a9a8a5098 Add missing include guards to <dl-tls.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.
Summary of changes:
sysdeps/i386/dl-tls.h | 4 ++++
sysdeps/m68k/dl-tls.h | 4 ++++
sysdeps/mips/dl-tls.h | 4 ++++
sysdeps/riscv/dl-tls.h | 4 ++++
sysdeps/s390/dl-tls.h | 4 ++++
5 files changed, 20 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 releases/gcc-13
in repository gcc.
from dcad20ccb6c c++: fix ICE with designated initializer [PR110114]
new 45ff9fcd465 c++: ICE with enum and conversion fn in template [PR115657]
new a82583e43ea c++: fix ICE with constexpr ARRAY_REF [PR110382]
new dfe7b5e9e70 c++: mutable temps in rodata [PR116369]
new 294140d752f c++: constexpr error with fn redecl in local scope [PR111132]
new c22c3a743d9 c++: wrong looser excep spec for dep noexcept [PR113158]
new ff0e01a99da c++: ICE initializing array of aggrs [PR117985]
new 005b1f41835 c++: wrong std::is_convertible with cv-qual fn [PR109680]
The 7 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/call.cc | 4 ++-
gcc/cp/constexpr.cc | 23 ++++++++-----
gcc/cp/cvt.cc | 18 ++++++++--
gcc/cp/decl.cc | 10 ++++--
gcc/cp/init.cc | 9 +++++
gcc/cp/method.cc | 39 +++++++++++++++++++---
gcc/cp/search.cc | 11 ++++++
.../g++.dg/cpp0x/constexpr-redeclaration3.C | 13 ++++++++
.../g++.dg/cpp0x/constexpr-redeclaration4.C | 14 ++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-array23.C | 28 ++++++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-array24.C | 27 +++++++++++++++
gcc/testsuite/g++.dg/cpp0x/noexcept83.C | 37 ++++++++++++++++++++
gcc/testsuite/g++.dg/cpp1y/constexpr-110382.C | 17 ++++++++++
...nstexpr-recursion1.C => constexpr-recursion2.C} | 16 ++++++---
gcc/testsuite/g++.dg/ext/is_convertible6.C | 16 +++++++++
gcc/testsuite/g++.dg/template/conv21.C | 14 ++++++++
gcc/testsuite/g++.dg/tree-ssa/initlist-opt7.C | 13 ++++++++
17 files changed, 287 insertions(+), 22 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-redeclaration3.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-redeclaration4.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-array23.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-array24.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/noexcept83.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-110382.C
copy gcc/testsuite/g++.dg/cpp1y/{constexpr-recursion1.C => constexpr-recursion2.C} (63%)
create mode 100644 gcc/testsuite/g++.dg/ext/is_convertible6.C
create mode 100644 gcc/testsuite/g++.dg/template/conv21.C
create mode 100644 gcc/testsuite/g++.dg/tree-ssa/initlist-opt7.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-13
in repository gcc.
from 5ff315e398b doc: cpp: fix version test example syntax
new b0426fbc853 c++: ICE with __has_unique_object_representations [PR115476]
new dcad20ccb6c c++: fix ICE with designated initializer [PR110114]
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/cp/call.cc | 19 +++++++++++--------
gcc/cp/semantics.cc | 2 +-
gcc/testsuite/g++.dg/cpp0x/initlist100.C | 4 ++--
.../g++.dg/cpp1z/has-unique-obj-representations4.C | 16 ++++++++++++++++
gcc/testsuite/g++.dg/cpp2a/desig28.C | 17 +++++++++++++++++
gcc/testsuite/g++.dg/cpp2a/desig29.C | 10 ++++++++++
6 files changed, 57 insertions(+), 11 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1z/has-unique-obj-representations4.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/desig28.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/desig29.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.
tcwg-buildslave pushed a change to branch master
in repository toolchain/ci/interesting-commits.
from b47e51f5b Add entry 42b24557bdf805d2913d3c75531fe441b1634332 from https [...]
new 6515e757b Add entry f3d6cdc5aebafac3961d4fccbd2ca0e302c6082c from https [...]
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:
.../first_url | 2 +-
.../tcwg_bmk-code_size-spec2k6/llvm-aarch64-master-Oz_LTO}/build_url | 2 +-
.../tcwg_bmk-code_size-spec2k6/llvm-aarch64-master-Oz_LTO/last_good | 1 +
3 files changed, 3 insertions(+), 2 deletions(-)
copy llvm/sha1/{05b4310c8aec7a050574277ced08a0ab86b27681 => f3d6cdc5aebafac3961d4f [...]
copy llvm/sha1/{0dab86265035dd97ecf042dfad6571ff59867dad/tcwg_bmk-code_size-spec2k [...]
create mode 100644 llvm/sha1/f3d6cdc5aebafac3961d4fccbd2ca0e302c6082c/tcwg_bmk-cod [...]
--
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 linux.
from 7110f24f9e33 Merge tag 'vfs-6.13-rc7.fixes.2' of git://git.kernel.org/p [...]
new 498d5b14db8c riscv: selftests: Fix warnings pointer masking test
new 03f0b548537f riscv: module: remove relocation_head rel_entry member allocation
new 6a97f4118ac0 riscv: Fix sleeping in invalid context in die()
new 13134cc94914 riscv: kprobes: Fix incorrect address calculation
new 7e25044b8045 cpuidle: riscv-sbi: fix device node release in early exit [...]
new f754f27e98f8 riscv: mm: Fix the out of bound issue of vmemmap address
new 51356ce60e59 riscv: stacktrace: fix backtracing through exceptions
new 40e6073e7648 riscv: qspinlock: Fixup _Q_PENDING_LOOPS definition
new 5cd900b8b7e4 riscv: use local label names instead of global ones in assembly
new 503465d4dc40 tools: selftests: riscv: Add pass message for v_initval_nolibc
new ebdc22c51ace tools: selftests: riscv: Add test count for vstate_prctl
new 89726fb01a12 Merge patch series "selftest: fix riscv/vector tests"
new fc58db9aeb15 drivers/perf: riscv: Fix Platform firmware event data
new 2c206cdede56 drivers/perf: riscv: Return error for default case
new 3aff4cdbe506 drivers/perf: riscv: Do not allow invalid raw event config
new 6f6ecce59d99 Merge patch series "SBI PMU event related fixes"
new f8c6263347e1 Merge tag 'riscv-for-linus-6.13-rc7' of git://git.kernel.o [...]
The 17 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:
arch/riscv/include/asm/page.h | 1 +
arch/riscv/include/asm/pgtable.h | 2 +-
arch/riscv/include/asm/sbi.h | 1 +
arch/riscv/include/asm/spinlock.h | 5 +++-
arch/riscv/kernel/entry.S | 21 ++++++++--------
arch/riscv/kernel/module.c | 18 ++++----------
arch/riscv/kernel/probes/kprobes.c | 2 +-
arch/riscv/kernel/stacktrace.c | 4 +++-
arch/riscv/kernel/traps.c | 6 ++---
arch/riscv/mm/init.c | 17 ++++++++++++-
drivers/cpuidle/cpuidle-riscv-sbi.c | 4 ++--
drivers/perf/riscv_pmu_sbi.c | 22 +++++++++--------
.../testing/selftests/riscv/abi/pointer_masking.c | 28 +++++++++++++++++-----
.../selftests/riscv/vector/v_initval_nolibc.c | 4 ++++
.../testing/selftests/riscv/vector/vstate_prctl.c | 2 ++
15 files changed, 87 insertions(+), 50 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 release/2.36/master
in repository glibc.
from fbcde5ea46 x86: Avoid integer truncation with large cache sizes (bug 32470)
new abfa5410a0 x86_64: Sort fpu/multiarch/Makefile
new d3bc49260c x86_64: Add log2 with FMA
new f3a9a9facc x86_64: Add expm1 with FMA
new 78a9a50bf2 x86_64: Add log1p with FMA
new f1c33665e5 x86: Check the lower byte of EAX of CPUID leaf 2 [BZ #30643]
new 147a830307 elf: Fix slow tls access after dlopen [BZ #19924]
new 27296daa25 x86: Only align destination to 1x VEC_SIZE in memset 4x loop
new f739705944 sysdeps/x86/Makefile: Split and sort tests
The 8 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:
elf/dl-close.c | 2 +-
elf/dl-open.c | 8 +-
elf/dl-reloc.c | 6 +-
elf/dl-tls.c | 117 +++++++++++----------
sysdeps/generic/ldsodefs.h | 3 +-
sysdeps/ieee754/dbl-64/s_expm1.c | 7 ++
sysdeps/ieee754/dbl-64/s_log1p.c | 5 +
sysdeps/x86/Makefile | 110 +++++++++++++------
sysdeps/x86/dl-cacheinfo.h | 31 +++---
sysdeps/x86_64/dl-tls.c | 4 +-
sysdeps/x86_64/fpu/multiarch/Makefile | 100 ++++++++++++++----
sysdeps/x86_64/fpu/multiarch/e_log2-fma.c | 3 +
.../x86_64/fpu/multiarch/{e_logf.c => e_log2.c} | 28 ++---
sysdeps/x86_64/fpu/multiarch/s_expm1-fma.c | 10 ++
.../x86_64/fpu/multiarch/s_expm1.c | 29 +++--
sysdeps/x86_64/fpu/multiarch/s_log1p-fma.c | 4 +
.../x86_64/fpu/multiarch/s_log1p.c | 18 ++--
.../x86_64/multiarch/memset-vec-unaligned-erms.S | 2 +-
18 files changed, 310 insertions(+), 177 deletions(-)
create mode 100644 sysdeps/x86_64/fpu/multiarch/e_log2-fma.c
copy sysdeps/x86_64/fpu/multiarch/{e_logf.c => e_log2.c} (60%)
create mode 100644 sysdeps/x86_64/fpu/multiarch/s_expm1-fma.c
copy misc/tst-syslog-long-progname.c => sysdeps/x86_64/fpu/multiarch/s_expm1.c (61%)
create mode 100644 sysdeps/x86_64/fpu/multiarch/s_log1p-fma.c
copy support/xstdlib.h => sysdeps/x86_64/fpu/multiarch/s_log1p.c (72%)
--
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 b5a67989898 Do not call cp_parser_omp_dispatch directly in cp_parser_pragma
new cfd7c54bdfe testsuite: arm: Add pattern for armv8-m.base to cmse-15.c test
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/gcc.target/arm/cmse/cmse-15.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.