public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Gaius Mulley <gaius@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc/devel/modula-2] Merge branch 'master' into devel/modula-2.
Date: Fri, 29 Jul 2022 16:23:29 +0000 (GMT)	[thread overview]
Message-ID: <20220729162329.81B493857017@sourceware.org> (raw)

https://gcc.gnu.org/g:8ea7cdc1d01f6eaf887417487388cd47f0b8b403

commit 8ea7cdc1d01f6eaf887417487388cd47f0b8b403
Merge: 9fb8757161c 6e0ca3fe88d
Author: Gaius Mulley <gaius.mulley@southwales.ac.uk>
Date:   Fri Jul 29 14:28:33 2022 +0100

    Merge branch 'master' into devel/modula-2.

Diff:

 ChangeLog                                          |    8 +
 MAINTAINERS                                        |    4 +-
 gcc/ChangeLog                                      |  551 ++++
 gcc/DATESTAMP                                      |    2 +-
 gcc/analyzer/ChangeLog                             |   40 +
 gcc/analyzer/analyzer.opt                          |    4 +
 gcc/analyzer/region-model-impl-calls.cc            |  117 +
 gcc/analyzer/region-model.cc                       |    6 +
 gcc/analyzer/region-model.h                        |    1 +
 gcc/analyzer/region.h                              |   60 +-
 gcc/analyzer/sm-fd.cc                              |   14 +
 gcc/analyzer/sm-malloc.cc                          |    1 +
 gcc/analyzer/sm-taint.cc                           |    1 +
 gcc/analyzer/store.cc                              |    4 +-
 gcc/c-family/ChangeLog                             |    5 +
 gcc/c-family/c-ppoutput.cc                         |    4 +
 gcc/cgraphunit.cc                                  |    2 +-
 gcc/common/config/loongarch/loongarch-common.cc    |    1 +
 gcc/config.in                                      |    8 +-
 gcc/config/aarch64/aarch64-builtins.cc             |  334 ++-
 gcc/config/aarch64/arm_neon.h                      | 3155 --------------------
 gcc/config/gcn/gcn-valu.md                         |   18 +-
 gcc/config/gcn/gcn.md                              |   20 +
 gcc/config/loongarch/constraints.md                |   24 +-
 gcc/config/loongarch/genopts/loongarch.opt.in      |    4 +
 gcc/config/loongarch/loongarch-opts.cc             |    7 +
 gcc/config/loongarch/loongarch-opts.h              |    4 +
 gcc/config/loongarch/loongarch-protos.h            |   10 +-
 gcc/config/loongarch/loongarch.cc                  |  652 ++--
 gcc/config/loongarch/loongarch.h                   |    7 +-
 gcc/config/loongarch/loongarch.md                  |  401 +--
 gcc/config/loongarch/loongarch.opt                 |    4 +
 gcc/config/loongarch/predicates.md                 |   56 +-
 gcc/config/riscv/riscv.cc                          |   27 +
 gcc/config/riscv/riscv.md                          |   71 +-
 gcc/config/rs6000/rs6000-p8swap.cc                 |   20 +-
 gcc/configure                                      |   71 +-
 gcc/configure.ac                                   |   15 +-
 gcc/cp/ChangeLog                                   |   16 +
 gcc/cp/parser.cc                                   |    4 +-
 gcc/cp/pt.cc                                       |    5 +-
 gcc/cp/semantics.cc                                |    5 +
 gcc/doc/implement-c.texi                           |    3 +-
 gcc/doc/invoke.texi                                |   85 +-
 gcc/doc/loop.texi                                  |    2 +-
 gcc/doc/tm.texi                                    |   12 +-
 gcc/doc/tm.texi.in                                 |    4 +-
 gcc/expr.cc                                        |    2 +-
 gcc/fortran/ChangeLog                              |    6 +
 gcc/fortran/interface.cc                           |    7 +-
 gcc/fortran/openmp.cc                              |    3 +-
 gcc/gimple-array-bounds.cc                         |    2 +-
 gcc/gimple-ssa-warn-restrict.cc                    |    2 +-
 gcc/gimple.cc                                      |   11 +-
 gcc/internal-fn.cc                                 |    6 +
 gcc/internal-fn.def                                |    4 +
 gcc/internal-fn.h                                  |    1 +
 gcc/jit/ChangeLog                                  |   76 +
 gcc/jit/docs/conf.py                               |    3 +
 gcc/jit/docs/cp/intro/tutorial02.rst               |   10 +-
 gcc/jit/docs/cp/intro/tutorial04.rst               |   75 +-
 gcc/jit/docs/cp/topics/asm.rst                     |    2 +-
 gcc/jit/docs/cp/topics/contexts.rst                |    8 +-
 gcc/jit/docs/cp/topics/expressions.rst             |   52 +-
 gcc/jit/docs/cp/topics/functions.rst               |   48 +-
 gcc/jit/docs/cp/topics/objects.rst                 |    2 +-
 gcc/jit/docs/cp/topics/types.rst                   |    2 +-
 gcc/jit/docs/examples/tut04-toyvm/toyvm.c          |    1 +
 gcc/jit/docs/index.rst                             |    8 -
 gcc/jit/docs/internals/index.rst                   |    3 +-
 gcc/jit/docs/intro/tutorial02.rst                  |   20 +-
 gcc/jit/docs/intro/tutorial03.rst                  |   28 +-
 gcc/jit/docs/intro/tutorial04.rst                  |   79 +-
 gcc/jit/docs/intro/tutorial05.rst                  |   41 +-
 gcc/jit/docs/topics/compilation.rst                |   38 +-
 gcc/jit/docs/topics/contexts.rst                   |   14 +-
 gcc/jit/docs/topics/expressions.rst                |  111 +-
 gcc/jit/docs/topics/function-pointers.rst          |    2 +-
 gcc/jit/docs/topics/functions.rst                  |    2 +-
 gcc/jit/docs/topics/objects.rst                    |    6 +-
 gcc/jit/docs/topics/types.rst                      |  111 +-
 gcc/omp-expand.cc                                  |  108 +-
 gcc/opts-common.cc                                 |    2 +
 gcc/testsuite/ChangeLog                            |  154 +
 gcc/testsuite/c-c++-common/gomp/atomic-32.c        |   14 +
 gcc/testsuite/c-c++-common/pragma-diag-14.c        |    9 +
 gcc/testsuite/c-c++-common/pragma-diag-15.c        |   13 +
 gcc/testsuite/g++.dg/cpp0x/range-for38.C           |   16 +
 gcc/testsuite/g++.dg/debug/pr106261.C              |   36 +
 gcc/testsuite/g++.dg/pr94920-1.C                   |    1 +
 gcc/testsuite/g++.dg/pr94920.C                     |    2 +-
 gcc/testsuite/g++.dg/template/redecl5.C            |    5 +
 gcc/testsuite/gcc.dg/analyzer/fd-meaning.c         |   37 +
 gcc/testsuite/gcc.dg/analyzer/putenv-1.c           |  109 +
 gcc/testsuite/gcc.dg/analyzer/stdarg-types-3.c     |   67 +
 gcc/testsuite/gcc.dg/analyzer/stdarg-types-4.c     |   22 +
 gcc/testsuite/gcc.dg/pr106189.c                    |    5 +
 gcc/testsuite/gcc.dg/pr106397.c                    |    1 +
 gcc/testsuite/gcc.dg/torture/pr106422.c            |   14 +
 gcc/testsuite/gcc.dg/tree-ssa/evrp4.c              |    2 +-
 gcc/testsuite/gcc.dg/ubsan/pr106099.c              |   10 +
 .../aarch64/advsimd-intrinsics/combine.c           |   18 +
 gcc/testsuite/gcc.target/loongarch/func-call-1.c   |   32 +
 gcc/testsuite/gcc.target/loongarch/func-call-2.c   |   32 +
 gcc/testsuite/gcc.target/loongarch/func-call-3.c   |   32 +
 gcc/testsuite/gcc.target/loongarch/func-call-4.c   |   32 +
 gcc/testsuite/gcc.target/loongarch/func-call-5.c   |   33 +
 gcc/testsuite/gcc.target/loongarch/func-call-6.c   |   33 +
 gcc/testsuite/gcc.target/loongarch/func-call-7.c   |   34 +
 gcc/testsuite/gcc.target/loongarch/func-call-8.c   |   33 +
 .../gcc.target/loongarch/relocs-symbol-noaddend.c  |   23 +
 gcc/testsuite/gcc.target/powerpc/pr106016.c        |   14 +
 gcc/testsuite/gcc.target/powerpc/pr106091.c        |   15 +
 gcc/testsuite/gcc.target/riscv/fle-ieee.c          |   12 +
 gcc/testsuite/gcc.target/riscv/fle-snan.c          |   12 +
 gcc/testsuite/gcc.target/riscv/fle.c               |   12 +
 gcc/testsuite/gcc.target/riscv/flef-ieee.c         |   12 +
 gcc/testsuite/gcc.target/riscv/flef-snan.c         |   12 +
 gcc/testsuite/gcc.target/riscv/flef.c              |   12 +
 gcc/testsuite/gcc.target/riscv/flt-ieee.c          |   12 +
 gcc/testsuite/gcc.target/riscv/flt-snan.c          |   12 +
 gcc/testsuite/gcc.target/riscv/flt.c               |   12 +
 gcc/testsuite/gcc.target/riscv/fltf-ieee.c         |   12 +
 gcc/testsuite/gcc.target/riscv/fltf-snan.c         |   12 +
 gcc/testsuite/gcc.target/riscv/fltf.c              |   12 +
 gcc/testsuite/gfortran.dg/gomp/declare-simd-3.f90  |   30 +
 gcc/testsuite/gfortran.dg/pr103504.f90             |   28 +
 gcc/tree-ssa-alias.cc                              |    4 +-
 gcc/tree-ssa-threadbackward.cc                     |    9 +
 gcc/tree-ssa-threadupdate.cc                       |    4 +-
 gcc/tree-vect-patterns.cc                          |    6 +-
 gcc/tree.cc                                        |    4 +
 gcc/value-range-pretty-print.cc                    |   33 +-
 gcc/value-range-pretty-print.h                     |    2 +-
 gcc/value-range.cc                                 |    8 +
 .../testsuite/libgomp.c-c++-common/pr106449-2.c    |   64 +
 libgomp/testsuite/libgomp.c-c++-common/pr106449.c  |   62 +
 libstdc++-v3/ChangeLog                             |    4 +
 libstdc++-v3/include/bits/atomic_wait.h            |   17 +-
 libstdc++-v3/include/bits/stl_iterator.h           |    2 +-
 maintainer-scripts/ChangeLog                       |    5 +
 maintainer-scripts/update_web_docs_git             |   21 +-
 142 files changed, 3841 insertions(+), 4219 deletions(-)


             reply	other threads:[~2022-07-29 16:23 UTC|newest]

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

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=20220729162329.81B493857017@sourceware.org \
    --to=gaius@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).