public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Martin Liska <marxin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc/devel/sphinx] Merge branch 'master' into devel/sphinx
Date: Mon, 24 Jan 2022 12:35:25 +0000 (GMT)	[thread overview]
Message-ID: <20220124123525.904383858000@sourceware.org> (raw)

https://gcc.gnu.org/g:58446a69f792166ea2e12d44d5bb3ef1aa61c00d

commit 58446a69f792166ea2e12d44d5bb3ef1aa61c00d
Merge: 60af3ff91f0 978abe918f8
Author: Martin Liska <mliska@suse.cz>
Date:   Mon Jan 24 13:35:09 2022 +0100

    Merge branch 'master' into devel/sphinx

Diff:

 ChangeLog                                          |   9 +
 MAINTAINERS                                        |   2 +-
 build.log                                          |   0
 contrib/ChangeLog                                  |   5 +
 contrib/filter-clang-warnings.py                   |   3 +-
 contrib/gcc-changelog/git_commit.py                |  12 +-
 contrib/gcc-changelog/test_email.py                |   5 +
 contrib/gcc-changelog/test_patches.txt             |  82 ++++++
 gcc/ChangeLog                                      | 315 +++++++++++++++++++++
 gcc/DATESTAMP                                      |   2 +-
 gcc/analyzer/ChangeLog                             |  32 +++
 gcc/analyzer/constraint-manager.cc                 | 172 ++++++++++-
 gcc/analyzer/constraint-manager.h                  |  15 +-
 gcc/analyzer/region-model-manager.cc               |  11 +
 gcc/analyzer/region-model.cc                       |   5 +-
 gcc/c-family/ChangeLog                             |  12 +
 gcc/c-family/c-common.cc                           |  25 +-
 gcc/c-family/c-common.h                            |   3 +-
 gcc/c-family/c-format.cc                           |   2 +-
 gcc/common.opt                                     |   6 +-
 gcc/common/config/i386/i386-common.cc              |  17 +-
 gcc/common/config/riscv/riscv-common.cc            |  14 +-
 gcc/common/config/s390/s390-common.cc              |  14 +-
 gcc/config.gcc                                     |   8 +-
 gcc/config/aarch64/aarch64-builtins.cc             |   7 +
 gcc/config/alpha/linux.h                           |  25 +-
 gcc/config/arm/arm-opts.h                          |   6 +
 gcc/config/arm/arm-protos.h                        |   2 +
 gcc/config/arm/arm.cc                              |  55 ++++
 gcc/config/arm/arm.md                              |  71 ++++-
 gcc/config/arm/arm.opt                             |  22 ++
 gcc/config/fuchsia.h                               |   2 +
 gcc/config/glibc-stdint.h                          |   3 +
 gcc/config/i386/i386.cc                            |   2 +-
 gcc/config/i386/predicates.md                      |   2 +
 gcc/config/linux.h                                 |  25 +-
 gcc/config/riscv/riscv-c.cc                        |   3 +
 gcc/config/rs6000/linux.h                          |  25 +-
 gcc/config/rs6000/linux64.h                        |  25 +-
 gcc/config/rs6000/rs6000-overload.def              |   4 +
 gcc/config/rs6000/rs6000-protos.h                  |   1 -
 gcc/config/rs6000/rs6000.cc                        |  40 +--
 gcc/config/rs6000/rs6000.md                        |  24 +-
 gcc/config/rs6000/vsx.md                           |  12 +-
 gcc/configure                                      |  18 ++
 gcc/configure.ac                                   |  16 ++
 gcc/cp/ChangeLog                                   |  83 ++++++
 gcc/cp/call.cc                                     |  32 ++-
 gcc/cp/class.cc                                    |   4 +-
 gcc/cp/cp-gimplify.cc                              |   6 +-
 gcc/cp/cp-tree.h                                   |   1 +
 gcc/cp/decl.cc                                     |  55 ++--
 gcc/cp/init.cc                                     |   2 +-
 gcc/cp/pt.cc                                       |  69 ++---
 gcc/cp/semantics.cc                                |  42 ++-
 gcc/cp/tree.cc                                     |  25 +-
 gcc/doc/generic.texi                               |   9 +
 gcc/doc/invoke.texi                                |  11 +
 gcc/doc/options.texi                               |  33 +++
 gcc/fortran/ChangeLog                              |  20 ++
 gcc/fortran/dump-parse-tree.cc                     |   4 +-
 gcc/fortran/gfortran.h                             |   3 +
 gcc/fortran/lang.opt                               |  18 +-
 gcc/fortran/openmp.cc                              |   6 +-
 gcc/fortran/simplify.cc                            |  13 +-
 gcc/fortran/trans-decl.cc                          |   3 +
 gcc/fortran/trans-openmp.cc                        |   2 +-
 gcc/fortran/trans-types.cc                         |   3 +
 gcc/gimple-fold.cc                                 |   4 +-
 gcc/gimple-range-path.cc                           |  48 +++-
 gcc/gimple-range-path.h                            |   3 +-
 gcc/gimple-ssa-warn-access.cc                      |   5 +-
 gcc/go/gofrontend/MERGE                            |   2 +-
 gcc/ira.cc                                         |  14 +-
 gcc/ira.h                                          |   7 +
 gcc/lra-assigns.cc                                 |   2 +-
 gcc/lra-constraints.cc                             | 148 ++++++----
 gcc/lra-int.h                                      |   8 +-
 gcc/lra-remat.cc                                   |   2 +-
 gcc/lra.cc                                         |  18 +-
 gcc/lra.h                                          |   2 -
 gcc/opt-functions.awk                              |   7 +-
 gcc/opt-read.awk                                   |   4 +
 gcc/optabs.cc                                      |   8 +-
 gcc/optc-gen.awk                                   |   2 +
 gcc/opts-common.cc                                 | 180 ++++++++++--
 gcc/opts-global.cc                                 |   6 +-
 gcc/opts.cc                                        |  59 +++-
 gcc/opts.h                                         |  24 +-
 gcc/testsuite/ChangeLog                            | 221 +++++++++++++++
 gcc/testsuite/c-c++-common/Wformat-pr104148.c      |  33 +++
 gcc/testsuite/g++.dg/abi/no_unique_address2.C      |  27 ++
 gcc/testsuite/g++.dg/cpp0x/constexpr-empty14a.C    |  11 +
 gcc/testsuite/g++.dg/cpp0x/initlist127.C           |  39 +++
 gcc/testsuite/g++.dg/cpp0x/noexcept72.C            |  21 ++
 gcc/testsuite/g++.dg/cpp0x/noexcept73.C            |  13 +
 gcc/testsuite/g++.dg/cpp1y/noexcept2.C             |  20 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction101.C    |  17 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction101a.C   |  22 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction101b.C   |  22 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction102.C    |  25 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction102a.C   |  27 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction102b.C   |  30 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction103.C    |  22 ++
 gcc/testsuite/g++.dg/cpp2a/desig20.C               |  20 ++
 gcc/testsuite/g++.dg/cpp2a/desig21.C               |  48 ++++
 gcc/testsuite/g++.dg/cpp2a/nontype-class51.C       |  26 ++
 gcc/testsuite/g++.dg/init/new50.C                  |   9 +
 gcc/testsuite/g++.dg/other/pr88187.C               |   2 +-
 gcc/testsuite/g++.dg/template/explicit-args6.C     |   2 +
 gcc/testsuite/g++.target/arm/pr103676.C            |  32 +++
 gcc/testsuite/gcc.dg/analyzer/pr104089.c           |   2 +
 gcc/testsuite/gcc.dg/analyzer/pr94362-1.c          |  60 ++++
 gcc/testsuite/gcc.dg/analyzer/pr94362-2.c          |  42 +++
 gcc/testsuite/gcc.dg/analyzer/torture/pr103685.c   |  33 +++
 gcc/testsuite/gcc.dg/analyzer/torture/pr104159.c   |  18 ++
 gcc/testsuite/gcc.dg/asan/pr99673.c                |  27 ++
 gcc/testsuite/gcc.dg/loop-unswitch-6.c             |  32 +++
 gcc/testsuite/gcc.dg/pr102087_1.c                  |  13 +
 gcc/testsuite/gcc.dg/pr102478.c                    |  29 ++
 gcc/testsuite/gcc.dg/pr103721-2.c                  |  28 ++
 gcc/testsuite/gcc.dg/pr103721.c                    |  25 ++
 gcc/testsuite/gcc.dg/sancov/pr104158-1.c           |  11 +
 gcc/testsuite/gcc.dg/sancov/pr104158-2.c           |  11 +
 gcc/testsuite/gcc.dg/sancov/pr104158-3.c           |  11 +
 gcc/testsuite/gcc.dg/sancov/pr104158-4.c           |  11 +
 gcc/testsuite/gcc.dg/sancov/pr104158-5.c           |  11 +
 gcc/testsuite/gcc.dg/sancov/pr104158-6.c           |  11 +
 gcc/testsuite/gcc.dg/sancov/pr104158-7.c           |  11 +
 gcc/testsuite/gcc.dg/spellcheck-options-24.c       |   5 +
 gcc/testsuite/gcc.dg/torture/pr100740.c            |  12 +
 gcc/testsuite/gcc.dg/torture/pr100786.c            |   9 +
 gcc/testsuite/gcc.dg/torture/pr101508.c            |  13 +
 gcc/testsuite/gcc.dg/torture/pr101972.c            |  39 +++
 gcc/testsuite/gcc.dg/torture/pr102131-1.c          |  16 ++
 gcc/testsuite/gcc.dg/torture/pr102131-2.c          |  15 +
 gcc/testsuite/gcc.dg/torture/pr102131-3.c          |  11 +
 gcc/testsuite/gcc.dg/torture/pr102131-4.c          |  15 +
 gcc/testsuite/gcc.dg/vect/pr104152.c               |  40 +++
 gcc/testsuite/gcc.target/aarch64/cpymem-q-reg_1.c  |   4 +-
 gcc/testsuite/gcc.target/aarch64/spellcheck_1.c    |   2 +-
 gcc/testsuite/gcc.target/aarch64/spellcheck_2.c    |   2 +-
 gcc/testsuite/gcc.target/aarch64/spellcheck_3.c    |   2 +-
 gcc/testsuite/gcc.target/aarch64/spellcheck_7.c    |   2 +-
 gcc/testsuite/gcc.target/aarch64/vsqrt-1.c         |  17 ++
 gcc/testsuite/gcc.target/aarch64/vsqrt-2.c         |  28 ++
 gcc/testsuite/gcc.target/arm/stack-protector-7.c   |  12 +
 gcc/testsuite/gcc.target/arm/stack-protector-8.c   |   7 +
 gcc/testsuite/gcc.target/i386/pr104188.c           |  70 +++++
 gcc/testsuite/gcc.target/mips/fix-r4000-2.c        |   4 +-
 gcc/testsuite/gcc.target/mips/fix-r4000-3.c        |   6 +-
 gcc/testsuite/gcc.target/mips/fix-r4000-7.c        |   4 +-
 gcc/testsuite/gcc.target/mips/fix-r4000-8.c        |   6 +-
 gcc/testsuite/gcc.target/powerpc/builtins-4.c      |  34 ++-
 .../powerpc/fold-vec-splat-floatdouble.c           |   5 +-
 gcc/testsuite/gcc.target/riscv/arch-10.c           |   2 +-
 gcc/testsuite/gcc.target/riscv/arch-12.c           |   2 +-
 gcc/testsuite/gcc.target/riscv/arch-9.c            |   2 +-
 gcc/testsuite/gcc.target/riscv/attribute-19.c      |   2 +-
 gcc/testsuite/gcc.target/riscv/pr104140.c          |  11 +
 .../gfortran.dg/gomp/affinity-clause-3.f90         |   2 +-
 gcc/testsuite/gfortran.dg/gomp/pr102621.f90        |  12 +
 gcc/testsuite/gfortran.dg/gomp/pr103695.f90        |  18 ++
 gcc/testsuite/gfortran.dg/transfer_simplify_11.f90 |   2 +-
 gcc/testsuite/gfortran.dg/transfer_simplify_13.f90 |  34 +++
 gcc/tree-ssa-loop-niter.cc                         |  49 +++-
 gcc/tree-ssa-loop-unswitch.cc                      |  50 ++--
 gcc/tree-ssa-math-opts.cc                          |   4 +
 gcc/tree-ssa-threadbackward.cc                     |   4 +
 gcc/tree-vect-slp.cc                               |  20 +-
 gcc/tree.def                                       |  14 +-
 gcc/value-relation.cc                              |  45 ++-
 gcc/value-relation.h                               |   3 +
 libatomic/acinclude.m4                             | 102 -------
 libatomic/configure                                |   6 +-
 libgo/go/runtime/panic32.go                        |   4 +-
 libgomp/ChangeLog                                  |  18 ++
 .../libgomp.oacc-c-c++-common/loop-gwv-1.c         |  25 +-
 .../libgomp.oacc-c-c++-common/loop-gwv-2.c         |  34 ++-
 .../libgomp.oacc-c-c++-common/loop-red-gwv-1.c     |  22 +-
 .../libgomp.oacc-c-c++-common/loop-red-v-1.c       |  11 +-
 .../libgomp.oacc-c-c++-common/loop-red-v-2.c       |  11 +-
 .../libgomp.oacc-c-c++-common/loop-red-w-1.c       |  13 +-
 .../libgomp.oacc-c-c++-common/loop-red-w-2.c       |  13 +-
 .../libgomp.oacc-c-c++-common/loop-red-wv-1.c      |  19 +-
 .../testsuite/libgomp.oacc-c-c++-common/loop-v-1.c |  13 +-
 .../testsuite/libgomp.oacc-c-c++-common/loop-w-1.c |  13 +-
 .../libgomp.oacc-c-c++-common/loop-wv-1.c          |  19 +-
 .../libgomp.oacc-c-c++-common/routine-gwv-1.c      |  21 +-
 .../libgomp.oacc-c-c++-common/routine-v-1.c        |  13 +-
 .../libgomp.oacc-c-c++-common/routine-w-1.c        |  13 +-
 .../libgomp.oacc-c-c++-common/routine-wv-1.c       |  19 +-
 libstdc++-v3/ChangeLog                             | 123 ++++++++
 libstdc++-v3/include/bits/alloc_traits.h           |   2 +-
 libstdc++-v3/include/bits/allocator.h              |   2 +-
 libstdc++-v3/include/bits/basic_string.h           |   2 +-
 libstdc++-v3/include/bits/chrono.h                 |   4 +-
 libstdc++-v3/include/bits/hashtable_policy.h       |  11 +
 libstdc++-v3/include/bits/move.h                   |   2 +-
 libstdc++-v3/include/bits/node_handle.h            |   2 +-
 libstdc++-v3/include/bits/range_access.h           |   2 +-
 libstdc++-v3/include/bits/shared_ptr.h             |   2 +-
 libstdc++-v3/include/bits/shared_ptr_atomic.h      |   4 +-
 libstdc++-v3/include/bits/shared_ptr_base.h        |   2 +-
 libstdc++-v3/include/bits/stl_algo.h               |   4 +-
 libstdc++-v3/include/bits/stl_algobase.h           |   2 +-
 libstdc++-v3/include/bits/stl_function.h           |   2 +-
 libstdc++-v3/include/bits/stl_iterator.h           |   2 +-
 libstdc++-v3/include/bits/stl_map.h                |   2 +-
 libstdc++-v3/include/bits/stl_tree.h               |   2 +-
 libstdc++-v3/include/bits/unique_ptr.h             |   2 +-
 libstdc++-v3/include/bits/unordered_map.h          |   2 +-
 libstdc++-v3/include/c_global/cmath                |   2 +-
 libstdc++-v3/include/c_global/cstddef              |   2 +-
 libstdc++-v3/include/std/atomic                    |   2 +-
 libstdc++-v3/include/std/complex                   |   2 +-
 libstdc++-v3/include/std/filesystem                |   2 +-
 libstdc++-v3/include/std/functional                |   4 +-
 libstdc++-v3/include/std/iomanip                   |   2 +-
 libstdc++-v3/include/std/mutex                     |   2 +-
 libstdc++-v3/include/std/numeric                   |   6 +-
 libstdc++-v3/include/std/spanstream                |  15 +-
 libstdc++-v3/include/std/tuple                     |   4 +-
 libstdc++-v3/include/std/type_traits               |  22 +-
 libstdc++-v3/include/std/version                   | 102 +++----
 libstdc++-v3/libsupc++/new                         |   2 +-
 libstdc++-v3/src/c++17/floating_from_chars.cc      |  38 ++-
 .../20_util/shared_ptr/atomic/atomic_shared_ptr.cc |   3 +
 .../testsuite/20_util/shared_ptr/cons/array.cc     |   2 +-
 .../testsuite/20_util/weak_ptr/atomic_weak_ptr.cc  |   3 +
 .../23_containers/unordered_map/104174.cc          |   4 +
 libstdc++-v3/testsuite/27_io/spanstream/2.cc       | 113 ++++++++
 232 files changed, 4043 insertions(+), 743 deletions(-)


             reply	other threads:[~2022-01-24 12:35 UTC|newest]

Thread overview: 92+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-24 12:35 Martin Liska [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-11-08 11:37 Martin Liska
2022-11-07  7:25 Martin Liska
2022-10-28  8:02 Martin Liska
2022-10-26 10:59 Martin Liska
2022-10-21 10:48 Martin Liska
2022-10-19 13:25 Martin Liska
2022-10-17  8:20 Martin Liska
2022-10-15 13:33 Martin Liska
2022-10-13 13:54 Martin Liska
2022-10-08  8:19 Martin Liska
2022-10-04 10:05 Martin Liska
2022-09-29  8:41 Martin Liska
2022-09-26 19:06 Martin Liska
2022-09-20 15:24 Martin Liska
2022-09-20 11:53 Martin Liska
2022-09-12  8:43 Martin Liska
2022-09-06  4:52 Martin Liska
2022-09-05  8:45 Martin Liska
2022-08-24  8:10 Martin Liska
2022-08-09 13:30 Martin Liska
2022-08-08  7:05 Martin Liska
2022-08-01  3:54 Martin Liska
2022-07-21 14:12 Martin Liska
2022-07-19 13:41 Martin Liska
2022-07-18  7:51 Martin Liska
2022-07-14  8:23 Martin Liska
2022-07-12 11:24 Martin Liska
2022-07-10 14:45 Martin Liska
2022-06-17 11:06 Martin Liska
2022-03-15  9:13 Martin Liska
2022-03-10  9:42 Martin Liska
2022-03-06 15:29 Martin Liska
2022-01-28 13:08 Martin Liska
2022-01-20 12:38 Martin Liska
2022-01-18 14:25 Martin Liska
2022-01-12 12:35 Martin Liska
2022-01-03 10:16 Martin Liska
2021-12-16 13:11 Martin Liska
2021-12-12 21:22 Martin Liska
2021-12-09 10:39 Martin Liska
2021-12-01 12:31 Martin Liska
2021-11-25 12:26 Martin Liska
2021-11-23 10:28 Martin Liska
2021-11-22 16:39 Martin Liska
2021-11-22 12:58 Martin Liska
2021-11-16 14:50 Martin Liska
2021-10-21  9:51 Martin Liska
2021-10-18 12:43 Martin Liska
2021-08-27  8:52 Martin Liska
2021-08-26  9:23 Martin Liska
2021-08-24 14:43 Martin Liska
2021-08-24  7:30 Martin Liska
2021-08-23 10:35 Martin Liska
2021-08-19 10:03 Martin Liska
2021-08-18 14:13 Martin Liska
2021-08-10  7:12 Martin Liska
2021-08-09  9:15 Martin Liska
2021-08-06 10:38 Martin Liska
2021-08-05 17:50 Martin Liska
2021-08-03 13:50 Martin Liska
2021-07-12  9:41 Martin Liska
2021-06-29  6:49 Martin Liska
2021-06-28 11:11 Martin Liska
2021-06-25  8:52 Martin Liska
2021-06-24 14:10 Martin Liska
2021-06-23  8:20 Martin Liska
2021-06-22  7:48 Martin Liska
2021-06-21  7:33 Martin Liska
2021-06-17 10:06 Martin Liska
2021-06-16 12:19 Martin Liska
2021-06-15 12:35 Martin Liska
2021-06-14 13:38 Martin Liska
2021-06-14  9:40 Martin Liska
2021-06-10  6:22 Martin Liska
2021-06-09 11:40 Martin Liska
2021-06-08  7:47 Martin Liska
2021-06-06 14:57 Martin Liska
2021-06-04 11:37 Martin Liska
2021-06-03 10:53 Martin Liska
2021-06-02 12:46 Martin Liska
2021-06-02  6:59 Martin Liska
2021-05-31  9:31 Martin Liska
2021-05-27  7:52 Martin Liska
2021-05-25 13:01 Martin Liska
2021-05-24  9:40 Martin Liska
2021-05-18  9:25 Martin Liska
2021-05-17 13:53 Martin Liska
2021-05-11 17:33 Martin Liska
2021-04-22  7:11 Martin Liska
2021-04-20  8:02 Martin Liska
2021-04-19 11:44 Martin Liska

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220124123525.904383858000@sourceware.org \
    --to=marxin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).