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

https://gcc.gnu.org/g:3fc6f5a75b904546ad075b8d6b96c63803d06838

commit 3fc6f5a75b904546ad075b8d6b96c63803d06838
Merge: 45f07c2c303 334a295fafd
Author: Iain Sandoe <iain@sandoe.co.uk>
Date:   Wed Jan 6 20:05:42 2021 +0000

    Merge master r11-6506.
    
            * Merge master r11-6506-g334a295fafdf.

Diff:

 ChangeLog                                          |   6 +
 c++tools/ChangeLog                                 |   9 +
 config/ChangeLog                                   |   5 +
 contrib/gcc-changelog/git_commit.py                |  26 +-
 contrib/gcc-changelog/git_email.py                 |   6 +-
 contrib/gcc-changelog/git_repository.py            |   6 +-
 contrib/gcc-changelog/test_email.py                |   3 +-
 gcc/ChangeLog                                      | 184 ++++++
 gcc/DATESTAMP                                      |   2 +-
 gcc/Makefile.in                                    |   9 +-
 gcc/analyzer/ChangeLog                             |   7 +
 gcc/analyzer/region-model-reachability.cc          |  36 +-
 gcc/c-family/c-attribs.c                           |  41 ++
 gcc/config/t-vxworks                               |  33 +-
 gcc/configure                                      |  12 +-
 gcc/cp/ChangeLog                                   |  36 ++
 gcc/cp/pt.c                                        |  10 +-
 gcc/d/ChangeLog                                    |  17 +
 gcc/d/d-builtins.cc                                |  14 +
 gcc/d/d-frontend.cc                                |  20 -
 gcc/d/d-target.cc                                  | 104 ++++
 gcc/d/d-target.h                                   |  15 +
 gcc/d/dmd/MERGE                                    |   2 +-
 gcc/d/dmd/declaration.h                            |   3 +-
 gcc/d/dmd/dmodule.c                                | 289 ++++-----
 gcc/d/dmd/dstruct.c                                | 118 +++-
 gcc/d/dmd/dtemplate.c                              |   6 +-
 gcc/d/dmd/expression.c                             |   9 +-
 gcc/d/dmd/expressionsem.c                          |  67 +-
 gcc/d/dmd/func.c                                   |  39 +-
 gcc/d/dmd/globals.h                                |   2 +-
 gcc/d/dmd/idgen.c                                  |  13 +
 gcc/d/dmd/module.h                                 |   2 +-
 gcc/d/dmd/mtype.c                                  |   1 +
 gcc/d/dmd/parse.c                                  |  15 +-
 gcc/d/dmd/root/filename.c                          |  14 +
 gcc/d/dmd/root/filename.h                          |   1 +
 gcc/d/dmd/target.h                                 |   3 +
 gcc/d/dmd/traits.c                                 | 684 ++++++++++++++++-----
 gcc/doc/invoke.texi                                |  14 +-
 gcc/doc/standards.texi                             |  24 +-
 gcc/fortran/resolve.c                              |   2 +-
 gcc/go/ChangeLog                                   |  13 +
 gcc/go/gofrontend/MERGE                            |   2 +-
 gcc/objcp/ChangeLog                                |  10 +
 gcc/testsuite/ChangeLog                            | 113 ++++
 .../g++.dg/coroutines/torture/pr95519-05-gro.C     |   2 +-
 gcc/testsuite/g++.dg/cpp1z/nontype-auto17.C        |  10 +
 gcc/testsuite/g++.dg/cpp1z/nontype-auto18.C        |   7 +
 gcc/testsuite/g++.dg/opt/store-merging-2.C         |   4 +-
 gcc/testsuite/g++.dg/template/partial5.C           |   2 +-
 gcc/testsuite/g++.dg/template/ttp33.C              |  10 +
 gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C    |   4 +-
 gcc/testsuite/gcc.dg/analyzer/pr94851-1.c          |   3 +-
 gcc/testsuite/gcc.dg/analyzer/pr97072.c            |   9 +
 gcc/testsuite/gcc.dg/analyzer/pr98073.c            |  13 +
 gcc/testsuite/gcc.dg/pr95582.c                     |  19 +
 gcc/testsuite/gcc.dg/tree-ssa/pr98513.c            |  47 ++
 gcc/testsuite/gcc.target/i386/sse2-mmx-pextrw.c    |   2 +-
 gcc/testsuite/gcc.target/s390/s390.exp             |   2 +-
 gcc/testsuite/gdc.test/compilable/Test16206.d      |  28 +
 .../compilable/imports/pkgmodule/package.d         |   3 +
 .../compilable/imports/pkgmodule/plainmodule.d     |   2 +
 .../compilable/imports/plainpackage/plainmodule.d  |   4 +
 gcc/testsuite/gdc.test/compilable/isZeroInit.d     |  78 +++
 .../gdc.test/compilable/isreturnonstack.d          |   7 +
 gcc/testsuite/gdc.test/compilable/line.d           |   4 +-
 gcc/testsuite/gdc.test/compilable/test16002.d      |  24 +
 gcc/testsuite/gdc.test/compilable/test17791.d      |  28 +
 gcc/testsuite/gdc.test/compilable/traits.d         | 130 ++++
 .../gdc.test/fail_compilation/fail16206a.d         |  12 +
 .../gdc.test/fail_compilation/fail16206b.d         |  12 +
 .../gdc.test/fail_compilation/fail_isZeroInit.d    |  12 +
 .../gdc.test/fail_compilation/isreturnonstack.d    |  12 +
 .../gdc.test/fail_compilation/test16002.d          |  15 +
 .../gdc.test/fail_compilation/test17096.d          |  50 ++
 .../gdc.test/fail_compilation/trait_loc_err.d      |  15 +
 .../gdc.test/fail_compilation/trait_loc_ov_err.d   |  40 ++
 gcc/testsuite/gdc.test/fail_compilation/traits.d   |  27 +
 .../gdc.test/fail_compilation/traits_child.d       |  17 +
 .../gdc.test/runnable/imports/test18322import.d    |  14 +
 gcc/testsuite/gdc.test/runnable/test17373.d        |  20 +
 gcc/testsuite/gdc.test/runnable/test17878.d        |  19 +
 gcc/testsuite/gdc.test/runnable/test18322.d        |  21 +
 gcc/testsuite/gdc.test/runnable/traits.d           | 180 +++---
 gcc/testsuite/gdc.test/runnable/traits_child.d     | 122 ++++
 gcc/testsuite/gfortran.dg/dec_math.f90             |   2 +-
 gcc/value-range.cc                                 |   6 +-
 libatomic/ChangeLog                                |   4 +
 libatomic/configure                                |  12 +-
 libbacktrace/ChangeLog                             |   4 +
 libbacktrace/configure                             |  12 +-
 libcc1/ChangeLog                                   |   4 +
 libcc1/configure                                   |  12 +-
 libcody/resolver.cc                                |   4 +-
 libffi/ChangeLog                                   |   4 +
 libffi/configure                                   |  12 +-
 libgfortran/ChangeLog                              |   4 +
 libgfortran/configure                              |  12 +-
 libgo/config/libtool.m4                            |  12 +-
 libgo/configure                                    |  12 +-
 libgo/go/internal/cpu/cpu_arm.go                   |   2 +
 libgo/go/internal/cpu/cpu_mips.go                  |  10 +
 libgo/go/internal/cpu/cpu_mips64x.go               |   2 +
 libgo/go/internal/cpu/cpu_mipsle.go                |  10 +
 libgo/go/internal/cpu/cpu_no_name.go               |   1 +
 libgo/go/internal/cpu/cpu_other.go                 |   3 +
 libgo/go/internal/cpu/cpu_ppc64x.go                |  23 +
 libgo/go/internal/cpu/cpu_wasm.go                  |  10 +
 libgo/go/internal/cpu/cpu_x86.go                   |   2 +
 libgo/go/syscall/setuidgid_32_linux.go             |   6 -
 libgo/go/syscall/setuidgid_linux.go                |   6 -
 libgomp/ChangeLog                                  |  24 +
 libgomp/configure                                  |  12 +-
 libhsail-rt/ChangeLog                              |   4 +
 libhsail-rt/configure                              |  12 +-
 libitm/ChangeLog                                   |   4 +
 libitm/configure                                   |  12 +-
 libobjc/ChangeLog                                  |   4 +
 libobjc/configure                                  |  12 +-
 liboffloadmic/ChangeLog                            |   5 +
 liboffloadmic/configure                            |  12 +-
 liboffloadmic/plugin/configure                     |  12 +-
 libphobos/ChangeLog                                |   4 +
 libphobos/configure                                |  12 +-
 libquadmath/ChangeLog                              |   4 +
 libquadmath/configure                              |  12 +-
 libsanitizer/ChangeLog                             |   4 +
 libsanitizer/configure                             |  12 +-
 libssp/ChangeLog                                   |   4 +
 libssp/configure                                   |  12 +-
 libstdc++-v3/ChangeLog                             |   8 +
 libstdc++-v3/configure                             |  12 +-
 libstdc++-v3/include/precompiled/stdc++.h          |   1 +
 libtool.m4                                         |  12 +-
 libvtv/ChangeLog                                   |   4 +
 libvtv/configure                                   |  12 +-
 lto-plugin/ChangeLog                               |   4 +
 lto-plugin/configure                               |  12 +-
 zlib/ChangeLog                                     |   4 +
 zlib/configure                                     |  12 +-
 141 files changed, 2753 insertions(+), 773 deletions(-)


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

only message in thread, other threads:[~2021-01-07  0:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-07  0:14 [gcc/devel/c++-coroutines] Merge master r11-6506 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).