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 61a0eb69e9a Merge master r11-6292. adds 71690493322 c++: Fix demangling of x.operator type adds 8cd42d3cc24 c++: Fix demangling of qualified-id after '.' adds a477f1445b3 gimplify: Gimplify value in gimplify_init_ctor_eval_range [ [...] adds 1a5e728a544 Daily bump. adds 03ea48ff27f Go frontend: ensure mpfr exponent range is large enough for Go adds 30b76d90596 -fdump-go-spec: don't crash if DECL_ORIGINAL_TYPE is NULL adds 93ac0c05ffc Fix Typo. adds 58fb912c151 c++: Fix demangling of <unresolved-name> adds 027935eec43 c++: Add some asserts in mangle.c adds 7e63d383b89 c++: Fix build with clang adds 337ed0eb490 i386: Fix __builtin_floor with FE_DOWNWARD rounding directi [...] adds ae27ce51e48 arm&aarch64: subdivide the type attribute "alu_shfit_imm" adds ffd454b92ba c++: Handle array members in build_comparison_op [PR93480] adds 1fa5fc7408d runtime: remove scase.releasetime field adds 48357ce4f22 runtime: omit nil-channel cases from selectgo's orders new f646680e3d6 Merge master r11-6307.
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: c++tools/ChangeLog | 5 + contrib/ChangeLog | 12 +++ gcc/ChangeLog | 29 ++++++ gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64.md | 12 +-- gcc/config/aarch64/falkor.md | 2 +- gcc/config/aarch64/predicates.md | 2 + gcc/config/aarch64/saphira.md | 2 +- gcc/config/aarch64/thunderx.md | 2 +- gcc/config/aarch64/thunderx2t99.md | 2 +- gcc/config/aarch64/thunderx3t110.md | 4 +- gcc/config/aarch64/tsv110.md | 2 +- gcc/config/arm/arm-fixed.md | 2 +- gcc/config/arm/arm.c | 3 +- gcc/config/arm/arm.md | 31 +++--- gcc/config/arm/arm1020e.md | 2 +- gcc/config/arm/arm1026ejs.md | 2 +- gcc/config/arm/arm1136jfs.md | 2 +- gcc/config/arm/arm926ejs.md | 2 +- gcc/config/arm/common.md | 41 ++++++++ gcc/config/arm/cortex-a15.md | 2 +- gcc/config/arm/cortex-a17.md | 2 +- gcc/config/arm/cortex-a5.md | 2 +- gcc/config/arm/cortex-a53.md | 2 +- gcc/config/arm/cortex-a57.md | 2 +- gcc/config/arm/cortex-a7.md | 2 +- gcc/config/arm/cortex-a8.md | 2 +- gcc/config/arm/cortex-a9.md | 2 +- gcc/config/arm/cortex-m4.md | 2 +- gcc/config/arm/cortex-m7.md | 2 +- gcc/config/arm/cortex-r4.md | 2 +- gcc/config/arm/exynos-m1.md | 2 +- gcc/config/arm/fa526.md | 2 +- gcc/config/arm/fa606te.md | 2 +- gcc/config/arm/fa626te.md | 2 +- gcc/config/arm/fa726te.md | 2 +- gcc/config/arm/fmp626.md | 2 +- gcc/config/arm/marvell-pj4.md | 8 +- gcc/config/arm/predicates.md | 2 + gcc/config/arm/thumb2.md | 6 +- gcc/config/arm/types.md | 67 +++++++++++-- gcc/config/arm/xgene1.md | 2 +- gcc/config/i386/i386-expand.c | 25 ++++- gcc/config/i386/i386.md | 2 +- gcc/cp/ChangeLog | 12 +++ gcc/cp/mangle.c | 10 +- gcc/cp/method.c | 94 +++++++++++++++++- gcc/cp/module.cc | 2 + gcc/gimplify.c | 6 +- gcc/go/go-lang.c | 10 ++ gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/types.cc | 5 +- gcc/godump.c | 2 + gcc/testsuite/ChangeLog | 15 +++ gcc/testsuite/g++.dg/cpp2a/spaceship-synth-neg5.C | 16 +++ gcc/testsuite/g++.dg/cpp2a/spaceship-synth10.C | 57 +++++++++++ gcc/testsuite/g++.dg/opt/pr98353.C | 17 ++++ gcc/testsuite/gcc.target/i386/pr96793.c | 28 ++++++ libcody/ChangeLog | 26 +++++ libgo/go/runtime/select.go | 89 +++++++---------- libiberty/ChangeLog | 11 +++ libiberty/cp-demangle.c | 115 +++++++++++++++++----- libiberty/cp-demangle.h | 4 + libiberty/testsuite/demangle-expected | 12 +++ libstdc++-v3/ChangeLog | 20 ++++ 65 files changed, 700 insertions(+), 160 deletions(-) create mode 100644 gcc/config/arm/common.md create mode 100644 gcc/testsuite/g++.dg/cpp2a/spaceship-synth-neg5.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/spaceship-synth10.C create mode 100644 gcc/testsuite/g++.dg/opt/pr98353.C create mode 100644 gcc/testsuite/gcc.target/i386/pr96793.c