public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/c++-coroutines] Merge master r11-2767.
@ 2020-08-19 19:19 Iain D Sandoe
  0 siblings, 0 replies; only message in thread
From: Iain D Sandoe @ 2020-08-19 19:19 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:16ea53264022cf23c021340c9c740831d7005a26

commit 16ea53264022cf23c021340c9c740831d7005a26
Merge: e898501dab6 5abc821556e
Author: Iain Sandoe <iain@sandoe.co.uk>
Date:   Wed Aug 19 19:19:38 2020 +0100

    Merge master r11-2767.
    
            * Merge master r11-2767-g5abc821556e1.

Diff:

 gcc/ChangeLog                                      |  68 ++
 gcc/DATESTAMP                                      |   2 +-
 gcc/analyzer/ChangeLog                             |  19 +
 gcc/analyzer/region-model.cc                       |  82 ++-
 gcc/analyzer/region-model.h                        |   6 +
 gcc/analyzer/region.cc                             |  60 +-
 gcc/analyzer/store.cc                              |  12 +-
 gcc/analyzer/store.h                               |   2 +
 gcc/c/ChangeLog                                    |   7 +
 gcc/common/config/i386/cpuinfo.h                   |  10 +
 gcc/config/aarch64/aarch64.c                       |   1 -
 gcc/config/i386/i386-expand.c                      |  36 +-
 gcc/config/rs6000/rs6000-builtin.def               |   2 +-
 gcc/config/rs6000/rs6000-call.c                    |   2 +-
 gcc/config/rs6000/rs6000-string.c                  | 103 ++-
 gcc/config/rs6000/rs6000.c                         |  14 +-
 gcc/config/rs6000/rs6000.opt                       |   4 +
 gcc/config/rs6000/vsx.md                           |   6 +-
 gcc/cp/ChangeLog                                   |  29 +
 gcc/cp/constraint.cc                               |   2 +
 gcc/cp/cp-tree.h                                   |  29 +-
 gcc/cp/pt.c                                        |  74 +-
 gcc/d/ChangeLog                                    |   6 +
 gcc/doc/extend.texi                                |   2 +-
 gcc/expr.c                                         |  27 +-
 gcc/fortran/ChangeLog                              |   9 +
 gcc/fortran/check.c                                |   5 +
 gcc/fortran/simplify.c                             |   4 +
 gcc/fortran/trans-intrinsic.c                      |  28 +-
 gcc/gimple-fold.c                                  |   2 +-
 gcc/match.pd                                       |   3 +
 gcc/opts-global.c                                  |  10 +-
 gcc/testsuite/ChangeLog                            |  65 ++
 gcc/testsuite/g++.dg/cpp1z/class-deduction-spec1.C |  38 ++
 .../g++.dg/cpp2a/class-deduction-alias4.C          |  44 ++
 gcc/testsuite/gcc.dg/analyzer/pr96648.c            |  36 +
 gcc/testsuite/gcc.dg/analyzer/pr96651-1.c          |  22 +
 gcc/testsuite/gcc.dg/analyzer/pr96651-2.c          |  72 ++
 gcc/testsuite/gcc.dg/memchr-2.c                    |  41 ++
 gcc/testsuite/gcc.dg/memcmp-5.c                    |  72 ++
 gcc/testsuite/gcc.dg/memcmp-6.c                    |  47 ++
 gcc/testsuite/gcc.dg/pr86314.c                     |   2 +-
 gcc/testsuite/gcc.dg/pr94234-1.c                   |  15 +
 gcc/testsuite/gcc.dg/sinatan-2.c                   |   1 +
 gcc/testsuite/gcc.dg/sinhovercosh-1.c              |   1 +
 gcc/testsuite/gcc.dg/tanhbysinh.c                  |   3 +-
 gcc/testsuite/gcc.target/aarch64/mgeneral-regs_7.c |  11 +
 gcc/testsuite/gcc.target/powerpc/mma-builtin-3.c   |   4 +-
 gcc/testsuite/gfortran.dg/min_max_kind.f90         |  15 +
 gcc/testsuite/gfortran.dg/minmax_char_3.f90        |  10 +
 gcc/testsuite/gfortran.dg/pr96613.f90              |  15 +
 gcc/testsuite/lib/target-supports.exp              |  14 +-
 gcc/vr-values.c                                    | 169 ++---
 gcc/vr-values.h                                    |  23 +-
 libstdc++-v3/ChangeLog                             |  41 ++
 libstdc++-v3/config/os/aix/t-aix                   |   3 +
 libstdc++-v3/include/Makefile.am                   |   1 +
 libstdc++-v3/include/Makefile.in                   |   1 +
 libstdc++-v3/include/backward/auto_ptr.h           |   6 +-
 libstdc++-v3/include/backward/binders.h            |   4 +-
 libstdc++-v3/include/bits/c++config                |  22 +-
 libstdc++-v3/include/bits/ios_base.h               |  17 +-
 libstdc++-v3/include/bits/iterator_concepts.h      |  24 +-
 libstdc++-v3/include/bits/max_size_type.h          | 753 +++++++++++++++++++++
 libstdc++-v3/include/bits/range_access.h           |  11 +
 libstdc++-v3/include/bits/stl_tree.h               |  16 -
 libstdc++-v3/include/ext/numeric_traits.h          |  18 +-
 libstdc++-v3/include/std/limits                    |  10 +-
 libstdc++-v3/include/std/streambuf                 |   4 +-
 libstdc++-v3/include/std/type_traits               |  26 +-
 .../20_util/invoke_result/incomplete_neg.cc        |  30 +
 .../20_util/is_nothrow_invocable/incomplete_neg.cc |  33 +
 .../20_util/is_nothrow_swappable/incomplete_neg.cc |  29 +
 .../is_nothrow_swappable_with/incomplete_neg.cc    |  31 +
 .../20_util/is_swappable_with/incomplete_neg.cc    |  31 +
 libstdc++-v3/testsuite/27_io/types/1.cc            |  13 +-
 libstdc++-v3/testsuite/std/ranges/iota/96042.cc    |  39 ++
 .../testsuite/std/ranges/iota/difference_type.cc   |  57 ++
 .../testsuite/std/ranges/iota/max_size_type.cc     | 376 ++++++++++
 79 files changed, 2743 insertions(+), 239 deletions(-)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-08-19 19:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-19 19:19 [gcc/devel/c++-coroutines] Merge master r11-2767 Iain D Sandoe

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).