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: Mon,  8 Aug 2022 12:01:25 +0000 (GMT)	[thread overview]
Message-ID: <20220808120125.9782E3856DCE@sourceware.org> (raw)

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

commit 1d7705735b94164f03a1385684ee4bbc72cc1e12
Merge: d7183fef74e 2a1448f2763
Author: Gaius Mulley <gaius.mulley@southwales.ac.uk>
Date:   Mon Aug 8 11:38:49 2022 +0100

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

Diff:

 ChangeLog                                          |  15 +
 MAINTAINERS                                        |   2 +-
 Makefile.def                                       |   3 +-
 config/ChangeLog                                   |   6 +
 config/acx.m4                                      |   6 +-
 configure                                          |   8 +-
 contrib/ChangeLog                                  |   4 +
 contrib/gcc-changelog/git_commit.py                |   2 +-
 gcc/ChangeLog                                      | 436 ++++++++++++++++
 gcc/DATESTAMP                                      |   2 +-
 gcc/alias.cc                                       |  14 +
 gcc/alias.h                                        |   1 +
 gcc/analyzer/ChangeLog                             |  18 +
 gcc/analyzer/analyzer.opt                          |   4 +
 gcc/analyzer/engine.cc                             |  49 ++
 gcc/analyzer/sm-fd.cc                              | 129 ++++-
 gcc/btfout.cc                                      |  10 +-
 gcc/c-family/ChangeLog                             |   9 +
 gcc/c-family/c-common.cc                           |  10 +-
 gcc/c-family/c-common.h                            |   8 +-
 gcc/c-family/c-opts.cc                             |   6 +
 gcc/c/ChangeLog                                    |   7 +
 gcc/c/c-typeck.cc                                  |  27 +-
 gcc/cfgcleanup.cc                                  |   2 +-
 gcc/config/i386/i386-features.cc                   |  78 ++-
 gcc/config/i386/i386.cc                            |  15 +-
 gcc/config/i386/i386.md                            |  57 ++-
 gcc/config/riscv/predicates.md                     |   2 +-
 gcc/config/rs6000/rs6000.cc                        |  11 -
 gcc/config/s390/vector.md                          |   6 +
 gcc/config/s390/vx-builtins.md                     |  12 +-
 gcc/config/xtensa/xtensa.cc                        |   1 +
 gcc/config/xtensa/xtensa.md                        |  10 +-
 gcc/cp/ChangeLog                                   |  27 +
 gcc/cp/constexpr.cc                                | 102 +++-
 gcc/cp/parser.cc                                   |   2 +-
 gcc/cselib.cc                                      |  70 +++
 gcc/cselib.h                                       |   1 +
 gcc/ctfc.cc                                        |   3 +-
 gcc/ctfc.h                                         |   3 +-
 gcc/d/ChangeLog                                    |  15 +
 gcc/d/d-codegen.cc                                 |   7 +
 gcc/d/d-lang.cc                                    |  20 -
 gcc/d/decl.cc                                      |   7 +-
 gcc/d/dmd/MERGE                                    |   2 +-
 gcc/d/dmd/VERSION                                  |   2 +-
 gcc/d/dmd/arrayop.d                                |   4 +-
 gcc/d/dmd/chkformat.d                              | 494 +++++++++++++-----
 gcc/d/dmd/clone.d                                  |   4 +
 gcc/d/dmd/constfold.d                              | 123 +----
 gcc/d/dmd/cparse.d                                 |   2 +-
 gcc/d/dmd/dcast.d                                  |  14 +-
 gcc/d/dmd/declaration.h                            |   1 +
 gcc/d/dmd/dinterpret.d                             |  11 +-
 gcc/d/dmd/dmodule.d                                |   8 +-
 gcc/d/dmd/dsymbol.d                                |  26 +
 gcc/d/dmd/dsymbolsem.d                             |   7 +-
 gcc/d/dmd/dtemplate.d                              |   2 +-
 gcc/d/dmd/entity.d                                 |  21 +-
 gcc/d/dmd/escape.d                                 |  33 +-
 gcc/d/dmd/expressionsem.d                          | 113 +++--
 gcc/d/dmd/file_manager.d                           |   6 +
 gcc/d/dmd/func.d                                   |  62 ++-
 gcc/d/dmd/impcnvtab.d                              |  55 ++
 gcc/d/dmd/initsem.d                                |  39 +-
 gcc/d/dmd/lexer.d                                  |   2 +-
 gcc/d/dmd/mustuse.d                                |   2 +-
 gcc/d/dmd/optimize.d                               |   2 +-
 gcc/d/dmd/parse.d                                  |  32 +-
 gcc/d/dmd/semantic3.d                              |  10 +-
 gcc/d/dmd/statementsem.d                           |  50 +-
 gcc/d/dmd/transitivevisitor.d                      |   6 +
 gcc/d/dmd/typesem.d                                |  13 +-
 gcc/d/expr.cc                                      |  11 +
 gcc/d/lang.opt                                     |   4 +-
 gcc/doc/gcov-dump.texi                             |   5 +
 gcc/doc/invoke.texi                                |  14 +-
 gcc/dse.cc                                         |   7 +-
 gcc/dwarf2ctf.cc                                   |   4 +-
 gcc/dwarf2out.cc                                   |   6 +-
 gcc/expmed.cc                                      | 111 ++--
 gcc/fortran/ChangeLog                              |  28 +
 gcc/fortran/check.cc                               |  23 +-
 gcc/fortran/match.cc                               |  24 +-
 gcc/fortran/match.h                                |   6 +-
 gcc/fortran/primary.cc                             |  14 +-
 gcc/gcov-dump.cc                                   |  61 ++-
 gcc/gimple-loop-jam.cc                             |  10 +-
 gcc/gimple-range-cache.cc                          |  45 +-
 gcc/gimple-range-fold.cc                           |  56 +-
 gcc/gimple-range-fold.h                            |   2 +-
 gcc/gimple-range-path.cc                           |  40 +-
 gcc/go/gofrontend/MERGE                            |   2 +-
 gcc/ipa-prop.cc                                    |   4 +
 gcc/lto-streamer-in.cc                             |   7 +-
 gcc/match.pd                                       |  16 +
 gcc/omp-expand.cc                                  |  12 +-
 gcc/omp-simd-clone.cc                              |  10 +-
 gcc/postreload.cc                                  |  15 +-
 gcc/profile.cc                                     |   9 +-
 gcc/range-op-float.cc                              | 564 +++++++++++++++++++++
 gcc/simplify-rtx.cc                                |  60 ++-
 gcc/symtab.cc                                      |   3 +-
 gcc/testsuite/ChangeLog                            | 201 ++++++++
 gcc/testsuite/c-c++-common/pragma-diag-15.c        |   2 +-
 gcc/testsuite/g++.dg/cpp1y/constexpr-complex1.C    |  24 +
 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda27.C    |  26 +
 gcc/testsuite/g++.dg/opt/pr94589-2.C               |   2 +-
 gcc/testsuite/g++.dg/pr104992-1.C                  |  30 ++
 gcc/testsuite/g++.dg/pr106474.C                    |  16 +
 .../tree-ssa => gcc.c-torture/compile}/pr93776.c   |   4 +-
 gcc/testsuite/gcc.dg/analyzer/fd-1.c               |  21 +
 gcc/testsuite/gcc.dg/analyzer/fd-2.c               |  15 +
 gcc/testsuite/gcc.dg/analyzer/fd-4.c               |  31 +-
 gcc/testsuite/gcc.dg/analyzer/fd-dup-1.c           | 223 ++++++++
 gcc/testsuite/gcc.dg/analyzer/function-ptr-5.c     |  42 ++
 gcc/testsuite/gcc.dg/debug/btf/btf-function-4.c    |  14 +
 gcc/testsuite/gcc.dg/debug/btf/btf-function-5.c    |  14 +
 gcc/testsuite/gcc.dg/debug/btf/btf-int-1.c         |  18 +-
 gcc/testsuite/gcc.dg/pr104992.c                    |  57 +++
 gcc/testsuite/gcc.dg/pr106243-1.c                  |  18 +
 gcc/testsuite/gcc.dg/pr106243.c                    |  43 ++
 gcc/testsuite/gcc.dg/pr106510.c                    |  10 +
 gcc/testsuite/gcc.dg/pr106519.c                    |  11 +
 gcc/testsuite/gcc.dg/subnot.c                      |   9 +
 gcc/testsuite/gcc.dg/torture/pr106497.c            |  20 +
 gcc/testsuite/gcc.dg/torture/pr106521.c            |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/ldist-39.c           |  16 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-10.c          |  20 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-11.c          |  21 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-12.c          |  20 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-13.c          |  19 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-14.c          |  21 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-15.c          |  21 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-16.c          |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-3.c           |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-4.c           |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-5.c           |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-6.c           |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-7.c           |  16 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-8.c           |  17 +
 gcc/testsuite/gcc.dg/tree-ssa/minmax-9.c           |  20 +
 gcc/testsuite/gcc.dg/tree-ssa/split-path-1.c       |   2 +-
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-1.c        |  19 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-11.c       |  26 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-3.c        |  18 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-4.c        |  16 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-6.c        |  20 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-7.c        |  14 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-8.c        |  26 +
 .../gcc.target/i386/addr-space-typeck-1.c          |  22 +
 .../gcc.target/i386/addr-space-typeck-2.c          |  25 +
 gcc/testsuite/gcc.target/i386/cmpti1.c             |   8 +
 gcc/testsuite/gcc.target/i386/cmpti2.c             |  12 +
 gcc/testsuite/gcc.target/i386/cmpti3.c             |  13 +
 gcc/testsuite/gcc.target/i386/pr106450.c           |  14 +
 gcc/testsuite/gcc.target/i386/pr106481.c           |  17 +
 gcc/testsuite/gcc.target/i386/pr47949.c            |  15 +
 gcc/testsuite/gcc.target/i386/pr83782-1.c          |   8 +-
 gcc/testsuite/gcc.target/i386/pr83782-2.c          |   4 +-
 gcc/testsuite/gcc.target/i386/pr83782-3.c          |  32 ++
 gcc/testsuite/gcc.target/i386/sse4_1-stv-7.c       |  18 +
 .../gdc.test/compilable/backendfloatoptim.d        |  10 +
 gcc/testsuite/gdc.test/compilable/cppmangle3.d     |   4 -
 .../gdc.test/compilable/must_use_initialize.d      |  16 +
 gcc/testsuite/gdc.test/compilable/noreturn1.d      |  28 +
 gcc/testsuite/gdc.test/compilable/test20832.d      |  12 +
 gcc/testsuite/gdc.test/compilable/test21177.d      |  65 ++-
 gcc/testsuite/gdc.test/compilable/test21432.d      |  25 +
 gcc/testsuite/gdc.test/compilable/test22390.d      |   8 +
 gcc/testsuite/gdc.test/compilable/test23082.d      |  17 +
 gcc/testsuite/gdc.test/compilable/test23166.d      |  22 +
 gcc/testsuite/gdc.test/compilable/test23172.d      |  33 ++
 gcc/testsuite/gdc.test/compilable/test23235.d      |  20 +
 gcc/testsuite/gdc.test/compilable/test23256.d      |   6 +
 gcc/testsuite/gdc.test/compilable/test23262.d      |  17 +
 gcc/testsuite/gdc.test/compilable/testgotoskips.d  |  17 +
 .../fail_compilation/attributediagnostic.d         |  39 +-
 .../gdc.test/fail_compilation/chkformat.d          |  18 +
 .../gdc.test/fail_compilation/diag10319.d          |  20 +-
 .../gdc.test/fail_compilation/diag11198.d          |  14 +-
 .../gdc.test/fail_compilation/diag12829.d          |  10 +-
 gcc/testsuite/gdc.test/fail_compilation/fail118.d  |  20 +-
 .../gdc.test/fail_compilation/fail20547.d          |  15 -
 .../gdc.test/fail_compilation/fail22134.d          |  17 +
 .../gdc.test/fail_compilation/fail23181.d          |  16 +
 gcc/testsuite/gdc.test/fail_compilation/fail261.d  |   5 +-
 gcc/testsuite/gdc.test/fail_compilation/fail58.d   |   8 +-
 gcc/testsuite/gdc.test/fail_compilation/fail6889.d |   2 +-
 gcc/testsuite/gdc.test/fail_compilation/fail7848.d |   8 +-
 .../gdc.test/fail_compilation/ice11856_1.d         |   7 +-
 .../fail_compilation/misc_parser_err_cov1.d        |   3 +-
 gcc/testsuite/gdc.test/fail_compilation/newaa.d    |  19 +
 gcc/testsuite/gdc.test/fail_compilation/nogc3.d    |   8 +-
 gcc/testsuite/gdc.test/fail_compilation/retscope.d |   4 +-
 .../gdc.test/fail_compilation/test13786.d          |  12 +-
 .../gdc.test/fail_compilation/test16193.d          |   4 +-
 .../gdc.test/fail_compilation/test21443.d          |  21 +
 .../gdc.test/fail_compilation/test21912.d          |  16 +-
 .../gdc.test/fail_compilation/test21939.d          |   5 +-
 .../gdc.test/fail_compilation/test23022.d          |  15 +
 .../gdc.test/fail_compilation/test23112.d          |  30 ++
 .../gdc.test/fail_compilation/test23170.d          |  12 +
 .../gdc.test/fail_compilation/test23216.d          |  24 +
 gcc/testsuite/gdc.test/runnable/closure.d          |   8 +-
 gcc/testsuite/gdc.test/runnable/evalorder.d        |  26 +
 gcc/testsuite/gdc.test/runnable/lexer.d            |   8 +-
 gcc/testsuite/gdc.test/runnable/noreturn1.d        |  32 ++
 gcc/testsuite/gdc.test/runnable/test11.d           |  37 --
 gcc/testsuite/gdc.test/runnable/test18973.d        |  25 +
 gcc/testsuite/gdc.test/runnable/test19.d           |  15 -
 gcc/testsuite/gdc.test/runnable/test20734.d        |   7 +
 gcc/testsuite/gdc.test/runnable/test23181.d        |  27 +
 gcc/testsuite/gdc.test/runnable/test8.d            |  39 ++
 gcc/testsuite/gdc.test/runnable/version.d          |  23 +-
 gcc/testsuite/gdc.test/runnable/warning1.d         |   9 -
 gcc/testsuite/gfortran.dg/associated_target_9a.f90 |  27 +
 gcc/testsuite/gfortran.dg/associated_target_9b.f90 |  23 +
 gcc/testsuite/gfortran.dg/literal_constants.f      |  20 +
 gcc/testsuite/gfortran.dg/literal_constants.f90    |  24 +
 gcc/testsuite/lib/target-supports.exp              |   2 +-
 gcc/tree-core.h                                    |  12 +-
 gcc/tree-loop-distribution.cc                      |   2 +-
 gcc/tree-ssa-phiopt.cc                             | 269 +++++++++-
 gcc/tree-ssa-threadbackward.cc                     | 173 +++----
 gcc/tree-ssa-threadupdate.cc                       |   3 +-
 gcc/value-range-storage.cc                         |  61 ++-
 gcc/value-range-storage.h                          |  19 +
 gcc/value-range.cc                                 | 119 +++--
 gcc/value-range.h                                  |  99 ++--
 gcc/value-relation.cc                              |  11 +-
 libgfortran/ChangeLog                              |   7 +
 libgfortran/io/transfer.c                          |  24 +
 libgo/sysinfo.c                                    |   5 +
 libgomp/ChangeLog                                  |   9 +
 libphobos/ChangeLog                                |  11 +
 libphobos/configure                                |   2 +-
 libphobos/configure.ac                             |   2 +-
 libphobos/libdruntime/MERGE                        |   4 +-
 libphobos/libdruntime/Makefile.am                  |  16 +-
 libphobos/libdruntime/Makefile.in                  |  19 +-
 libphobos/libdruntime/core/cpuid.d                 |  16 +
 libphobos/libdruntime/core/int128.d                |   2 -
 .../libdruntime/core/internal/array/appending.d    |  28 +-
 .../libdruntime/core/internal/array/duplication.d  | 346 +++++++++++++
 libphobos/libdruntime/core/internal/dassert.d      |   2 +-
 libphobos/libdruntime/core/runtime.d               |   2 +-
 libphobos/libdruntime/core/stdc/errno.d            |   2 +-
 libphobos/libdruntime/core/stdc/stdio.d            |  53 +-
 libphobos/libdruntime/core/stdc/wchar_.d           |  90 +++-
 .../libdruntime/core/sys/darwin/mach/getsect.d     |   1 -
 .../libdruntime/core/sys/dragonflybsd/string.d     |   1 -
 libphobos/libdruntime/core/sys/linux/sys/time.d    |   1 -
 libphobos/libdruntime/core/sys/linux/sys/xattr.d   |   1 -
 libphobos/libdruntime/core/sys/linux/tipc.d        |   1 -
 libphobos/libdruntime/core/sys/posix/signal.d      |  79 +--
 libphobos/libdruntime/core/sys/posix/spawn.d       |   2 +-
 libphobos/libdruntime/core/sys/posix/stdio.d       |   2 +-
 libphobos/libdruntime/core/sys/posix/sys/select.d  |   1 -
 libphobos/libdruntime/core/sys/posix/time.d        |  66 ++-
 libphobos/libdruntime/core/sys/posix/ucontext.d    |   1 -
 .../libdruntime/core/sys/solaris/sys/priocntl.d    |   1 -
 .../libdruntime/core/sys/solaris/sys/procset.d     |   1 -
 libphobos/libdruntime/core/sys/windows/cguid.d     |   1 -
 libphobos/libdruntime/core/sys/windows/ntsecpkg.d  |   1 -
 libphobos/libdruntime/core/sys/windows/olectlid.d  |   1 -
 libphobos/libdruntime/core/sys/windows/shlguid.d   |   1 -
 libphobos/libdruntime/core/sys/windows/sspi.d      |   1 -
 libphobos/libdruntime/object.d                     | 340 +------------
 libphobos/libdruntime/rt/dylib_fixes.c             |   1 -
 libphobos/src/MERGE                                |   2 +-
 libphobos/src/etc/c/curl.d                         |  18 +-
 libphobos/src/std/algorithm/comparison.d           |   2 +-
 libphobos/src/std/algorithm/iteration.d            |  15 +-
 libphobos/src/std/algorithm/searching.d            |  12 +
 libphobos/src/std/conv.d                           |  19 +-
 libphobos/src/std/experimental/checkedint.d        |   2 +-
 libphobos/src/std/experimental/logger/core.d       | 176 +++++--
 libphobos/src/std/experimental/logger/filelogger.d |   2 +-
 .../src/std/experimental/logger/multilogger.d      |   2 +-
 libphobos/src/std/file.d                           |   2 +-
 libphobos/src/std/format/internal/write.d          |   6 +-
 libphobos/src/std/format/package.d                 |  24 +
 libphobos/src/std/math/package.d                   |   1 +
 libphobos/src/std/math/rounding.d                  |  28 +-
 libphobos/src/std/random.d                         |  67 ++-
 libphobos/src/std/stdio.d                          |  17 +-
 libphobos/src/std/sumtype.d                        | 148 +++---
 libphobos/src/std/typecons.d                       |  20 +-
 libphobos/src/std/uni/package.d                    |   8 +-
 libphobos/testsuite/libphobos.gc/nocollect.d       |   2 +-
 .../sanitizer_platform_limits_posix.h              |   7 +-
 libstdc++-v3/ChangeLog                             |  79 +++
 libstdc++-v3/include/Makefile.am                   |   1 +
 libstdc++-v3/include/Makefile.in                   |   1 +
 libstdc++-v3/include/bits/atomic_wait.h            |  42 +-
 libstdc++-v3/include/bits/fs_dir.h                 |  33 +-
 libstdc++-v3/include/bits/ios_base.h               |   2 +-
 libstdc++-v3/include/bits/iterator_concepts.h      |  28 +-
 libstdc++-v3/include/bits/regex.h                  |  24 +-
 libstdc++-v3/include/experimental/scope            | 497 ++++++++++++++++++
 libstdc++-v3/include/std/expected                  |  32 +-
 libstdc++-v3/include/std/string_view               |   2 +-
 libstdc++-v3/include/std/version                   |   2 +-
 libstdc++-v3/python/libstdcxx/v6/printers.py       |   4 +-
 .../basic_string_view/cons/char/range_c++20.cc     |  28 +-
 .../basic_string_view/cons/wchar_t/range_c++20.cc  |  30 +-
 .../27_io/basic_ofstream/open/char/noreplace.cc    |   4 +-
 .../27_io/basic_ofstream/open/wchar_t/noreplace.cc |   4 +-
 .../27_io/filesystem/iterators/lwg3719.cc          |  39 ++
 .../28_regex/iterators/regex_iterator/lwg3719.cc   |  29 ++
 .../iterators/regex_token_iterator/lwg3719.cc      |  29 ++
 .../testsuite/experimental/scopeguard/exit.cc      | 300 +++++++++++
 .../testsuite/experimental/scopeguard/uniqueres.cc | 366 +++++++++++++
 lto-plugin/ChangeLog                               |   6 +
 lto-plugin/configure                               |   2 +-
 lto-plugin/configure.ac                            |   2 +-
 317 files changed, 8239 insertions(+), 1882 deletions(-)


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

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-08 12:01 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-07-29 16:23 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=20220808120125.9782E3856DCE@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).