public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Iain D Sandoe <iains@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc/devel/c++-coroutines] Merge master r12-754.
Date: Wed, 12 May 2021 21:32:57 +0000 (GMT)	[thread overview]
Message-ID: <20210512213257.C61A83853816@sourceware.org> (raw)

https://gcc.gnu.org/g:1bbeff25d5a50e76767d914fdf1bf3c1d344ee21

commit 1bbeff25d5a50e76767d914fdf1bf3c1d344ee21
Merge: e70d541b1d1 8982a5354d2
Author: Iain Sandoe <iain@sandoe.co.uk>
Date:   Wed May 12 19:17:48 2021 +0100

    Merge master r12-754.
    
            * Merge master r12-754-g8982a5354d26.

Diff:

 ChangeLog                                          |  38 ++
 MAINTAINERS                                        |   1 +
 contrib/ChangeLog                                  |  27 ++
 contrib/gcc-changelog/git_commit.py                |   2 +-
 contrib/gcc-changelog/git_update_version.py        |   6 +-
 gcc/ChangeLog                                      | 202 ++++++++
 gcc/DATESTAMP                                      |   2 +-
 gcc/Makefile.in                                    |   4 +-
 gcc/ada/ChangeLog                                  |  27 +-
 gcc/ada/atree.adb                                  |  32 +-
 gcc/ada/atree.ads                                  |   3 +-
 gcc/ada/doc/share/conf.py                          |  28 +-
 gcc/c-family/ChangeLog                             |   4 +
 gcc/c/c-parser.c                                   | 116 ++---
 gcc/cfgexpand.c                                    |   7 +-
 gcc/config/i386/i386-expand.c                      |   7 +
 gcc/config/i386/mmx.md                             | 130 +++++-
 gcc/config/i386/sse.md                             |  29 ++
 gcc/config/nvptx/nvptx-opts.h                      |   6 +
 gcc/config/nvptx/nvptx.c                           |   5 +-
 gcc/config/nvptx/nvptx.h                           |   2 +
 gcc/config/nvptx/nvptx.md                          |  14 +-
 gcc/config/nvptx/nvptx.opt                         |  14 +
 gcc/cp/ChangeLog                                   |  27 ++
 gcc/cp/parser.c                                    |  90 +++-
 gcc/cp/pt.c                                        |   1 +
 gcc/doc/invoke.texi                                |   6 +
 gcc/dwarf2out.c                                    |   1 +
 gcc/expr.c                                         |  57 +--
 gcc/lto-wrapper.c                                  | 510 +++++++++++----------
 gcc/match.pd                                       |  12 +
 gcc/opts.c                                         |   6 +-
 gcc/po/ChangeLog                                   |   4 +
 gcc/po/ja.po                                       |  84 ++--
 gcc/rtl.c                                          |   5 +-
 gcc/rtl.h                                          |   2 +-
 gcc/testsuite/ChangeLog                            |  99 ++++
 gcc/testsuite/c-c++-common/gomp/map-6.c            | 135 ++++++
 gcc/testsuite/c-c++-common/gomp/map-7.c            |  20 +
 gcc/testsuite/g++.dg/cpp1y/digit-sep-paste.C       |  11 +
 gcc/testsuite/g++.dg/warn/Wint-in-bool-context-2.C |  16 +
 gcc/testsuite/g++.target/i386/pr98218-1.C          |  20 +
 gcc/testsuite/gcc.dg/c2x-digit-separators-3.c      |  12 +
 gcc/testsuite/gcc.dg/cpp/c11-elifdef-1.c           |  16 +
 gcc/testsuite/gcc.dg/cpp/c2x-elifdef-1.c           |  57 +++
 gcc/testsuite/gcc.dg/cpp/c2x-elifdef-2.c           |  63 +++
 gcc/testsuite/gcc.dg/cpp/pr100392.c                |   5 +
 gcc/testsuite/gcc.dg/cpp/pr100392.h                |   4 +
 gcc/testsuite/gcc.dg/debug/dwarf2/pr100515.c       |  19 +
 gcc/testsuite/gcc.dg/gomp/pr100508.c               |  14 +
 gcc/testsuite/gcc.dg/torture/pr100519.c            |  13 +
 gcc/testsuite/gcc.dg/torture/pr100566.c            |  36 ++
 gcc/testsuite/gcc.dg/tree-ssa/pr94589-1.c          |  21 +
 gcc/testsuite/gcc.target/i386/avx2-pr99908.c       |  25 +
 gcc/testsuite/gcc.target/i386/pr98218-1.c          |   2 +-
 gcc/testsuite/gcc.target/i386/pr98218-1a.c         |   2 +-
 gcc/testsuite/gcc.target/i386/pr98218-2.c          |   2 +-
 gcc/testsuite/gcc.target/i386/pr98218-2a.c         |   2 +-
 gcc/testsuite/gcc.target/i386/pr98218-3.c          |   2 +-
 gcc/testsuite/gcc.target/i386/pr98218-3a.c         |   2 +-
 gcc/testsuite/gcc.target/i386/pr98218-4.c          |  16 +
 gcc/testsuite/gcc.target/i386/sse4_1-pr99908.c     |  23 +
 gcc/testsuite/lib/lto.exp                          |   3 +
 gcc/tree-ssa-reassoc.c                             |  86 ++--
 gcc/tree-ssa-sccvn.c                               |   6 +-
 libcpp/ChangeLog                                   |  24 +
 libcpp/directives.c                                |  68 ++-
 libcpp/include/cpplib.h                            |   3 +
 libcpp/init.c                                      |  52 ++-
 libcpp/lex.c                                       |  14 +-
 libgomp/ChangeLog                                  |   8 +
 libstdc++-v3/ChangeLog                             |  33 ++
 .../pstl/alg_nonmodifying/find_end.cc              |   8 +-
 .../pstl/alg_nonmodifying/search_n.cc              |   2 +-
 libstdc++-v3/testsuite/util/pstl/test_utils.h      |  10 +-
 75 files changed, 1889 insertions(+), 576 deletions(-)


                 reply	other threads:[~2021-05-12 21:32 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20210512213257.C61A83853816@sourceware.org \
    --to=iains@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).