This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 605c2a393d3 middle-end/97521 - always use single-bit bools in mask vect [...] new 7f0ce82a4c0 PR tree-optimization/97546 Bail out of find_bswap_or_nop on [...] new 93e9a7bcd54 libstdc++: Fix declarations of memalign etc. for freestandi [...] new 2d5aad691f5 AArch64: Add FLAG for store intrinsics [PR94442] new 783dc02d897 Fix simdclones new 9e2256dcd48 c++: Implement __is_nothrow_constructible and __is_nothrow_ [...]
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: gcc/c-family/c-common.c | 2 + gcc/c-family/c-common.h | 1 + gcc/cgraphclones.c | 1 + gcc/cgraphunit.c | 1 - gcc/config/aarch64/aarch64-builtins.c | 1 + gcc/config/aarch64/aarch64-simd-builtins.def | 22 ++++----- gcc/cp/cp-tree.h | 5 +- gcc/cp/method.c | 17 +++++-- gcc/cp/parser.c | 10 ++++ gcc/cp/semantics.c | 8 ++++ gcc/gimple-ssa-store-merging.c | 6 ++- gcc/ipa-inline-transform.c | 1 + gcc/symtab.c | 10 +++- .../g++.dg/ext/is_nothrow_constructible1.C | 48 ++++++++++++++++++++ ...onstructible2.C => is_nothrow_constructible2.C} | 6 +-- ...onstructible3.C => is_nothrow_constructible3.C} | 2 +- ...onstructible4.C => is_nothrow_constructible4.C} | 3 +- ...onstructible5.C => is_nothrow_constructible5.C} | 2 +- .../g++.dg/ext/is_nothrow_constructible6.C | 11 +++++ gcc/testsuite/gcc.c-torture/compile/pr97576.c | 18 ++++++++ .../gcc.target/aarch64/sve/acle/general/pr97546.c | 22 +++++++++ gcc/tree-ssa-structalias.c | 4 -- libstdc++-v3/include/std/type_traits | 53 ++-------------------- libstdc++-v3/libsupc++/new_opa.cc | 2 +- 24 files changed, 177 insertions(+), 79 deletions(-) create mode 100644 gcc/testsuite/g++.dg/ext/is_nothrow_constructible1.C copy gcc/testsuite/g++.dg/ext/{is_trivially_constructible2.C => is_nothrow_constru [...] copy gcc/testsuite/g++.dg/ext/{is_trivially_constructible3.C => is_nothrow_constru [...] copy gcc/testsuite/g++.dg/ext/{is_trivially_constructible4.C => is_nothrow_constru [...] copy gcc/testsuite/g++.dg/ext/{is_trivially_constructible5.C => is_nothrow_constru [...] create mode 100644 gcc/testsuite/g++.dg/ext/is_nothrow_constructible6.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr97576.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/acle/general/pr97546.c