This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-coroutines in repository gcc.
from 116900d3cde Merge master r11-8327. adds 244dfb95119 c++: Prevent bogus -Wtype-limits warning with NTTP [PR100161] adds 92664c058d7 c++: Add testcase for already fixed PR [PR77435] adds 4e1aaf32ddf c++: Add testcase for already fixed PR [PR94508] adds b5f79f4d380 aix: delete AIX pre-PowerPC version of atomicity.h adds 0745b6fa66c aix: Remove AIX 6.1 support. adds 6a2f49c6999 aix: Switch AIX configurtion to DWARF2 debugging adds e3948473e92 Daily bump. adds 342de04d993 MASK_AVX256_SPLIT_UNALIGNED_STORE/LOAD should be cleared in [...] adds 700e5429712 tree-optimization/99971 - improve BB vect dependence analysis adds cbca62831cb c++: Use STATIC_ASSERT for OVL_OP_MAX. adds b26485f1af4 Avoid more temporaries in IVOPTs adds 500305a92ef tree-optimization/100222 - remove redundant mark_irreducibl [...] adds 58ad6b28025 First do add_noreturn_fake_exit_edges in connect_infinite_l [...] adds 35b2be219fc VEC_COND_EXPR code cleanup adds 5f8aed72e76 c++: Refine enum direct-list-initialization [CWG2374] adds 87fc34a461c c++: Fix pretty printing pointer to function type [PR98767] adds a752a43073d libstdc++ Simplify definition of net::socket_base constants adds 3517dfe05c0 libstdc++: Clarify argument to net::io_context::async_wait adds 0e1e7b77904 libstdc++: Allow net::io_context to compile without <poll.h [...] adds 5d87c2251c4 early-remat.c: Fix new/delete mismatch [PR100230] adds d2324a5ab3f i386: Fix atomic FP peepholes [PR100182] adds d992ebaa802 MAINTAINERS: Add myself for write after approval adds d54693f806a Remove not feasible FIXME adds 716bb02b40e i386: Reject -m96bit-long-double for 64bit targets [PR100041] adds 0a662e103e9 bpf: align function entry point to 64 bits adds 886b6c1e8af bpf: allow BSS symbols to be global symbols new 73307d4402e Merge master r11-8353.
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: MAINTAINERS | 1 + contrib/ChangeLog | 6 + contrib/config-list.mk | 2 +- gcc/ChangeLog | 25 +++ gcc/DATESTAMP | 2 +- gcc/cfganal.c | 10 +- gcc/config.gcc | 9 - gcc/config/bpf/bpf.h | 16 +- gcc/config/i386/i386-options.c | 10 + gcc/config/i386/i386.md | 30 --- gcc/config/i386/sync.md | 24 ++- gcc/config/rs6000/aix61.h | 214 --------------------- gcc/config/rs6000/aix71.h | 4 +- gcc/config/rs6000/aix72.h | 4 +- gcc/cp/ChangeLog | 6 + gcc/cp/cp-tree.h | 3 + gcc/cp/cxx-pretty-print.c | 47 +++-- gcc/cp/decl.c | 8 +- gcc/cp/lex.c | 2 - gcc/cp/pt.c | 24 ++- gcc/early-remat.c | 2 +- gcc/fortran/ChangeLog | 14 ++ gcc/genmatch.c | 20 +- gcc/gimple-match-head.c | 9 +- gcc/gimple.c | 7 +- gcc/ipa-sra.c | 1 - gcc/lto-wrapper.c | 2 - gcc/predict.c | 6 - gcc/store-motion.c | 1 - gcc/testsuite/ChangeLog | 67 +++++++ gcc/testsuite/g++.dg/concepts/diagnostic17.C | 17 ++ gcc/testsuite/g++.dg/cpp1z/direct-enum-init2.C | 8 + gcc/testsuite/g++.dg/cpp2a/concepts-uneval3.C | 9 + .../g++.dg/template/partial-specialization9.C | 7 + gcc/testsuite/g++.dg/vect/slp-pr99971.cc | 36 ++++ gcc/testsuite/g++.dg/warn/Wtype-limits6.C | 17 ++ gcc/testsuite/gcc.target/i386/pr100093.c | 12 ++ gcc/testsuite/gcc.target/i386/pr100182.c | 30 +++ gcc/testsuite/gcc.target/i386/pr71245-1.c | 2 +- gcc/testsuite/gcc.target/i386/pr71245-2.c | 2 +- gcc/testsuite/gcc.target/i386/pr79514.c | 1 + gcc/tree-ssa-loop-ivopts.c | 13 +- gcc/tree-ssa-pre.c | 9 +- gcc/tree-vect-data-refs.c | 18 +- libgomp/ChangeLog | 5 + libstdc++-v3/ChangeLog | 49 +++++ libstdc++-v3/config/os/aix/atomicity.h | 56 ------ libstdc++-v3/include/experimental/io_context | 18 +- libstdc++-v3/include/experimental/socket | 81 ++++---- .../experimental/net/socket/socket_base.cc | 45 +++++ .../testsuite/util/testsuite_common_types.h | 99 ++++++++++ 51 files changed, 654 insertions(+), 456 deletions(-) delete mode 100644 gcc/config/rs6000/aix61.h create mode 100644 gcc/testsuite/g++.dg/concepts/diagnostic17.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/direct-enum-init2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-uneval3.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization9.C create mode 100644 gcc/testsuite/g++.dg/vect/slp-pr99971.cc create mode 100644 gcc/testsuite/g++.dg/warn/Wtype-limits6.C create mode 100644 gcc/testsuite/gcc.target/i386/pr100093.c create mode 100644 gcc/testsuite/gcc.target/i386/pr100182.c delete mode 100644 libstdc++-v3/config/os/aix/atomicity.h create mode 100644 libstdc++-v3/testsuite/experimental/net/socket/socket_base.cc