From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id D59313857BB2; Mon, 21 Nov 2022 09:56:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D59313857BB2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669024582; bh=G3WFc6AQqWE+u7y6RlmC3Gb1EACqnZoJSnYkjd2yqAo=; h=From:To:Subject:Date:From; b=e3g/M7AEKDs1z8wJxC09yDolEQa6ES49YIy7ArXhFIrpY0W9PRYmAOeE+uHzhVDFj VW0Z5U7f03gv+mA8THaWgtAFhVNY4u5hfJ+fN7FI0Nvwk4HeK4rfPFyLoe+nBcJ1Wf RmXLAuydQxzMS5fovYltRUClPg33PJVfAfjQuLsg= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/redhat/heads/gcc-12-branch)] Merge commit 'r12-8924-ga6b1f6126de5e45777610699b6d634605c17711c' into redhat/gcc-12-branch X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/vendors/redhat/heads/gcc-12-branch X-Git-Oldrev: fa08f2733eed2cb77bf0d6bd86a74399be68b5a2 X-Git-Newrev: b3f5a0d53b84ed27cf00cfa2b9c3e2c78935c07d Message-Id: <20221121095622.D59313857BB2@sourceware.org> Date: Mon, 21 Nov 2022 09:56:22 +0000 (GMT) List-Id: https://gcc.gnu.org/g:b3f5a0d53b84ed27cf00cfa2b9c3e2c78935c07d commit b3f5a0d53b84ed27cf00cfa2b9c3e2c78935c07d Merge: fa08f2733ee a6b1f6126de Author: Jakub Jelinek Date: Mon Nov 21 10:55:25 2022 +0100 Merge commit 'r12-8924-ga6b1f6126de5e45777610699b6d634605c17711c' into redhat/gcc-12-branch Diff: gcc/ChangeLog | 131 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/alias.cc | 19 +-- gcc/c/ChangeLog | 19 +++ gcc/config/aarch64/aarch64-cores.def | 4 +- gcc/config/aarch64/aarch64-cost-tables.h | 107 +++++++++++++++++ gcc/config/aarch64/aarch64-fusion-pairs.def | 1 + gcc/config/aarch64/aarch64-tune.md | 2 +- gcc/config/aarch64/aarch64.cc | 64 ++++++++++ gcc/config/i386/avx512bf16intrin.h | 6 +- gcc/config/i386/avx512fp16intrin.h | 44 +++---- gcc/config/i386/avx512fp16vlintrin.h | 34 +++--- gcc/config/i386/driver-i386.cc | 13 +- gcc/config/i386/i386.h | 7 +- gcc/config/i386/i386.md | 3 +- gcc/config/i386/smmintrin.h | 13 +- gcc/config/loongarch/sync.md | 27 ++++- gcc/config/nvptx/nvptx.h | 2 +- gcc/cp/ChangeLog | 41 +++++++ gcc/cp/cp-tree.h | 2 +- gcc/cp/decl.cc | 2 +- gcc/cp/semantics.cc | 2 +- gcc/cp/typeck.cc | 4 +- gcc/doc/cppopts.texi | 7 +- gcc/doc/invoke.texi | 11 +- gcc/expr.cc | 3 +- gcc/fold-const.cc | 18 +-- gcc/reg-stack.cc | 86 ++++++++++---- gcc/testsuite/ChangeLog | 99 ++++++++++++++++ gcc/testsuite/g++.dg/cpp2a/constinit18.C | 12 ++ gcc/testsuite/g++.dg/tree-ssa/pr107206.C | 27 +++++ gcc/testsuite/g++.target/i386/pr107404.C | 53 +++++++++ gcc/testsuite/gcc.dg/guality/param-6.c | 20 ++++ gcc/testsuite/gcc.dg/ubsan/pr107183.c | 12 ++ gcc/testsuite/gcc.target/i386/pr107304.c | 39 ++++++ gcc/testsuite/gcc.target/loongarch/pr107713-1.c | 50 ++++++++ gcc/testsuite/gcc.target/loongarch/pr107713-2.c | 9 ++ gcc/testsuite/gnat.dg/opt99.adb | 15 +++ gcc/testsuite/gnat.dg/opt99_pkg1.adb | 10 ++ gcc/testsuite/gnat.dg/opt99_pkg1.ads | 19 +++ gcc/testsuite/gnat.dg/opt99_pkg2.ads | 13 ++ gcc/tree-sra.cc | 7 ++ libatomic/ChangeLog | 9 ++ libatomic/config/x86/init.c | 6 +- libgomp/ChangeLog | 21 ++++ libstdc++-v3/ChangeLog | 48 ++++++++ libstdc++-v3/doc/html/manual/index.html | 2 +- libstdc++-v3/doc/xml/authors.xml | 9 +- libstdc++-v3/doc/xml/manual/spine.xml | 9 +- libstdc++-v3/include/bits/basic_string.h | 4 +- libstdc++-v3/include/bits/fs_path.h | 126 +++++++++++--------- libstdc++-v3/include/bits/mofunc_impl.h | 5 +- libstdc++-v3/include/experimental/bits/fs_path.h | 52 ++++++-- .../testsuite/20_util/move_only_function/call.cc | 11 ++ .../27_io/filesystem/path/construct/95048.cc | 45 +++++++ .../filesystem/path/construct/95048.cc | 47 ++++++++ 56 files changed, 1239 insertions(+), 214 deletions(-)