public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Nathan Sidwell <nathan@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc/devel/c++-modules] Daily bump.
Date: Thu, 11 Jun 2020 12:56:04 +0000 (GMT)	[thread overview]
Message-ID: <20200611125604.014913893678@sourceware.org> (raw)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="us-ascii", Size: 13004 bytes --]

https://gcc.gnu.org/g:53ffb43a79780b6e33e1816831724c0fb3d2fa32

commit 53ffb43a79780b6e33e1816831724c0fb3d2fa32
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Fri May 29 00:16:23 2020 +0000

    Daily bump.

Diff:
---
 ChangeLog               |   6 +++
 contrib/ChangeLog       |  20 ++++++++
 gcc/ChangeLog           | 129 ++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |   2 +-
 gcc/c/ChangeLog         |   4 ++
 gcc/cp/ChangeLog        |  14 ++++++
 gcc/fortran/ChangeLog   |  17 +++++++
 gcc/jit/ChangeLog       |  22 +++++++++
 gcc/testsuite/ChangeLog |  56 +++++++++++++++++++++
 libgcc/ChangeLog        |   6 +++
 libgfortran/ChangeLog   |   5 ++
 11 files changed, 280 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 4fb8690abc5..7bbef9e0356 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2020-05-28  Nicolas Bértolo  <nicolasbertolo@gmail.com>
+
+	* configure.ac: Don't require --enable-host-shared when building
+	for Mingw.
+	* configure: Regenerate.
+
 2020-05-18  Jason Merrill  <jason@redhat.com>
 
 	* configure.ac: Update bootstrap dialect to -std=c++11.
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 8a70274ec75..39c23eeaf0b 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,23 @@
+2020-05-28  Pierre-Marie de Rodat  <derodat@adacore.com>
+
+	* gcc-changelog/git_email.py (GitEmail.__init__): Interpret file
+	renamings as a file deletion plus a file addition.
+	* gcc-changelog/git_repository.py (parse_git_revisions):
+	Likewise.
+	* gcc-changelog/test_email.py: New testcase.
+	* gcc-changelog/test_patches.txt: New testcase.
+
+2020-05-28  Martin Liska  <mliska@suse.cz>
+
+	* check-params-in-docs.py: Update to new format
+	of help.  Apply flake8 corrections.
+
+2020-05-28  Martin Liska  <mliska@suse.cz>
+
+	* mklog.py: Support renaming of files.
+	One needs unidiff 0.6.0+.
+	* test_mklog.py: Test it.
+
 2020-05-27  Martin Liska  <mliska@suse.cz>
 
 	* gcc-git-customization.sh: Use git-backport.py to drop
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f6b24295511..4fc37369d39 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,132 @@
+2020-05-28  Nicolas Bértolo  <nicolasbertolo@gmail.com>
+
+	* Makefile.in: don't look for libiberty in the "pic" subdirectory
+	when building for Mingw. Add dependency on xgcc with the proper
+	extension.
+
+2020-05-28  Jeff Law  <law@redhat.com>
+
+	* config/h8300/logical.md (bclrhi_msx): Remove pattern.
+
+2020-05-28  Jeff Law  <law@redhat.com>
+
+	* config/h8300/logical.md (HImode H8/SX bit-and splitter): Don't
+	make a nonzero adjustment to the memory offset.
+	(b<ior,xor>hi_msx): Turn into a splitter.
+
+2020-05-28  Eric Botcazou  <ebotcazou@gcc.gnu.org>
+
+	* gimple-ssa-store-merging.c (merged_store_group::can_be_merged_into):
+	Fix off-by-one error.
+
+2020-05-28  Richard Sandiford  <richard.sandiford@arm.com>
+
+	* config/aarch64/aarch64.h (aarch64_frame): Add a comment above
+	wb_candidate1 and wb_candidate2.
+	* config/aarch64/aarch64.c (aarch64_layout_frame): Invalidate
+	wb_candidate1 and wb_candidate2 if we decided not to use them.
+
+2020-05-28  Richard Sandiford  <richard.sandiford@arm.com>
+
+	PR testsuite/95361
+	* config/aarch64/aarch64.c (aarch64_expand_epilogue): Assert that
+	we have at least some CFI operations when using a frame pointer.
+	Only redefine the CFA if we have CFI operations.
+
+2020-05-28  Richard Biener  <rguenther@suse.de>
+
+	* tree-vect-slp.c (vect_prologue_cost_for_slp): Remove
+	case for !SLP_TREE_VECTYPE.
+	(vect_slp_analyze_node_operations): Adjust.
+
+2020-05-28  Richard Biener  <rguenther@suse.de>
+
+	* tree-vectorizer.h (_slp_tree::vec_defs): Add.
+	(SLP_TREE_VEC_DEFS): Likewise.
+	* tree-vect-slp.c (_slp_tree::_slp_tree): Adjust.
+	(_slp_tree::~_slp_tree): Likewise.
+	(vect_mask_constant_operand_p): Remove unused function.
+	(vect_get_constant_vectors): Rename to...
+	(vect_create_constant_vectors): ... this.  Take the
+	invariant node as argument and code generate it.  Remove
+	dead code, remove temporary asserts.  Pass a NULL stmt_info
+	to vect_init_vector.
+	(vect_get_slp_defs): Simplify.
+	(vect_schedule_slp_instance): Code-generate externals and
+	invariants using vect_create_constant_vectors.
+
+2020-05-28  Richard Biener  <rguenther@suse.de>
+
+	* tree-vect-stmts.c (vect_finish_stmt_generation_1):
+	Conditionalize stmt_info use, assert the new stmt cannot throw
+	when not specified.
+	(vect_finish_stmt_generation): Adjust assert.
+
+2020-05-28  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/95273
+	PR tree-optimization/95356
+	* tree-vect-stmts.c (vectorizable_shift): Adjust when and to
+	what we set the vector type of the shift operand SLP node
+	again.
+
+2020-05-28  Andrea Corallo  <andrea.corallo@arm.com>
+
+	* config/arm/arm.c (mve_vector_mem_operand): Fix unwanted
+	fall-throughs.
+
+2020-05-28  Martin Liska  <mliska@suse.cz>
+
+	PR web/95380
+	* doc/invoke.texi: Add missing params, remove max-once-peeled-insns and
+	rename ipcp-unit-growth to ipa-cp-unit-growth.
+
+2020-05-28  Hongtao Liu  <hongtao.liu@intel.com>
+
+	* config/i386/sse.md (*avx512vl_<code>v2div2qi2_store_1): Rename
+	from *avx512vl_<code>v2div2qi_store and refine memory size of
+	the pattern.
+	(*avx512vl_<code>v2div2qi2_mask_store_1): Ditto.
+	(*avx512vl_<code><mode>v4qi2_store_1): Ditto.
+	(*avx512vl_<code><mode>v4qi2_mask_store_1): Ditto.
+	(*avx512vl_<code><mode>v8qi2_store_1): Ditto.
+	(*avx512vl_<code><mode>v8qi2_mask_store_1): Ditto.
+	(*avx512vl_<code><mode>v4hi2_store_1): Ditto.
+	(*avx512vl_<code><mode>v4hi2_mask_store_1): Ditto.
+	(*avx512vl_<code>v2div2hi2_store_1): Ditto.
+	(*avx512vl_<code>v2div2hi2_mask_store_1): Ditto.
+	(*avx512vl_<code>v2div2si2_store_1): Ditto.
+	(*avx512vl_<code>v2div2si2_mask_store_1): Ditto.
+	(*avx512f_<code>v8div16qi2_store_1): Ditto.
+	(*avx512f_<code>v8div16qi2_mask_store_1): Ditto.
+	(*avx512vl_<code>v2div2qi2_store_2): New define_insn_and_split.
+	(*avx512vl_<code>v2div2qi2_mask_store_2): Ditto.
+	(*avx512vl_<code><mode>v4qi2_store_2): Ditto.
+	(*avx512vl_<code><mode>v4qi2_mask_store_2): Ditto.
+	(*avx512vl_<code><mode>v8qi2_store_2): Ditto.
+	(*avx512vl_<code><mode>v8qi2_mask_store_2): Ditto.
+	(*avx512vl_<code><mode>v4hi2_store_2): Ditto.
+	(*avx512vl_<code><mode>v4hi2_mask_store_2): Ditto.
+	(*avx512vl_<code>v2div2hi2_store_2): Ditto.
+	(*avx512vl_<code>v2div2hi2_mask_store_2): Ditto.
+	(*avx512vl_<code>v2div2si2_store_2): Ditto.
+	(*avx512vl_<code>v2div2si2_mask_store_2): Ditto.
+	(*avx512f_<code>v8div16qi2_store_2): Ditto.
+	(*avx512f_<code>v8div16qi2_mask_store_2): Ditto.
+	* config/i386/i386-builtin-types.def: Adjust builtin type.
+	* config/i386/i386-expand.c: Ditto.
+	* config/i386/i386-builtin.def: Adjust builtin.
+	* config/i386/avx512fintrin.h: Ditto.
+	* config/i386/avx512vlbwintrin.h: Ditto.
+	* config/i386/avx512vlintrin.h: Ditto.
+
+2020-05-28  Dong JianQiang  <dongjianqiang2@huawei.com>
+
+	PR gcov-profile/95332
+	* gcov-io.c (gcov_var::endian): Move field.
+	(from_file): Add IN_GCOV_TOOL check.
+	* gcov-io.h (gcov_magic): Ditto.
+
 2020-05-28  Max Filippov  <jcmvbkbc@gmail.com>
 
 	* config/xtensa/xtensa.c (xtensa_delegitimize_address): New
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 5118880926f..065a3b85610 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20200528
+20200529
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index f7aa74fa9da..7efb6bfc544 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,7 @@
+2020-05-28  Nicolas Bértolo  <nicolasbertolo@gmail.com>
+
+	* Make-lang.in: Remove extra slash.
+
 2020-05-19  Martin Liska  <mliska@suse.cz>
 
 	* c-parser.c: Fix typo.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index bdbe1d01277..a83f991d8e2 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,17 @@
+2020-05-28  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/95328
+	* decl.c (cp_finish_decomp): Call complete_type before checking
+	COMPLETE_TYPE_P.
+
+2020-05-28  Jason Merrill  <jason@redhat.com>
+
+	PR c++/94926
+	* decl.c (cp_finish_decl): Revert r9-297 change.
+	(check_static_variable_definition): Likewise.
+	* constexpr.c (ensure_literal_type_for_constexpr_object): Likewise.
+	* pt.c (instantiate_decl): Return early on type error.
+
 2020-05-27  Jason Merrill  <jason@redhat.com>
 
 	PR c++/95319
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 71b246a97e8..147196a6738 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,20 @@
+2020-05-28  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95373
+	* primary.c (is_inquiry_ref): Check validity of inquiry
+	references against selected Fortran standard.
+
+2020-05-28  Steven G. Kargl  <kargl@gcc.gnu.org>
+	    Mark Eggleston  <markeggleston@gcc.gnu.org>
+	    Mark Eggleston  <markeggleston@gcc.gnu.org>
+
+	PR fortran/94397
+	* match.c (gfc_match_type_spec): New variable ok initialised
+	to true. Set ok with the return value of gfc_reduce_init_expr
+	called only if the expression is not EXPR_CONSTANT and is not
+	EXPR_VARIABLE. Add !ok to the check for type not being integer
+	or the rank being greater than zero.
+
 2020-05-27  Harald Anlauf  <anlauf@gmx.de>
 
 	PR fortran/95090
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog
index cd93e440d80..85e30f6390e 100644
--- a/gcc/jit/ChangeLog
+++ b/gcc/jit/ChangeLog
@@ -1,3 +1,25 @@
+2020-05-28  Nicolas Bértolo  <nicolasbertolo@gmail.com>
+
+	* Make-lang.in: Remove extra slash. Build libgccjit.dll and its
+	import library in Windows.
+	* config-lang.in: Update comment about --enable-host-shared.
+	* jit-w32.h: New file.
+	* jit-w32.c: New file.
+	(print_last_error): New function that prints the error
+	string corresponding to GetLastError().
+	(get_TOKEN_USER_current_user): Helper function used for getting
+	the SID belonging to the current user.
+	(create_directory_for_current_user): Helper function to create
+	a directory with permissions such that only the current user can
+	access it.
+	(win_mkdtemp): Create a temporary directory using Windows APIs.
+	* jit-playback.c: Do not chmod files in Windows. Use LoadLibrary,
+	FreeLibrary and GetProcAddress instead of libdl.
+	* jit-result.h, jit-result.c: Introduce result::handle_t to
+	abstract over the types used for dynamic library handles.
+	* jit-tempdir.c: Do not use mkdtemp() in Windows, use
+	win_mkdtemp().
+
 2020-05-27  David Malcolm  <dmalcolm@redhat.com>
 
 	PR jit/95314
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 2341f4ec16d..8111a852305 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,59 @@
+2020-05-28  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/95328
+	* g++.dg/cpp1z/decomp53.C: New test.
+
+2020-05-28  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95373
+	* gfortran.dg/pr95373_1.f90: New test.
+	* gfortran.dg/pr95373_2.f90: New test.
+
+2020-05-28  Jason Merrill  <jason@redhat.com>
+
+	* g++.dg/cpp1z/pr86648.C: Expect error.
+	* g++.dg/cpp1z/static2.C: Expect error.
+	* g++.dg/cpp0x/nsdmi16.C: New test.
+
+2020-05-28  Marek Polacek  <polacek@redhat.com>
+
+	* g++.dg/cpp0x/initlist-array12.C: Fix the definition of
+	initializer_list for ilp32 target.
+
+2020-05-28  Marek Polacek  <polacek@redhat.com>
+
+	* g++.dg/ext/tmplattr10.C: Only run in c++11.
+
+2020-05-28  H.J. Lu  <hjl.tools@gmail.com>
+
+	* gcc.dg/builtin-bswap-10.c: Check "! int128" instead of ilp32
+
+2020-05-28  Steven G. Kargl  <kargl@gcc.gnu.org>
+	    Mark Eggleston  <markeggleston@gcc.gnu.org>
+
+	PR fortran/94397
+	* gfortran.dg/pr94397.F90: New test.
+
+2020-05-28  Richard Sandiford  <richard.sandiford@arm.com>
+
+	* gcc.target/aarch64/shrink_wrap_1.c: New test.
+
+2020-05-28  Richard Sandiford  <richard.sandiford@arm.com>
+
+	PR testsuite/95361
+	* gcc.target/aarch64/sve/pr95361.c: New test.
+
+2020-05-28  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/95273
+	PR tree-optimization/95356
+	* gcc.target/i386/pr95356.c: New testcase.
+
+2020-05-28  Richard Biener  <rguenther@suse.de>
+
+	PR testsuite/95363
+	* gcc.dg/vect/bb-slp-pr95271.c: Fix on ilp32 targets.
+
 2020-05-28  Alexandre Oliva  <oliva@adacore.com>
 
 	* lib/gcc-defs.exp: Avoid introducing empty arguments between
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index ca729c48b1f..06e7986cdf8 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,9 @@
+2020-05-28  Dong JianQiang  <dongjianqiang2@huawei.com>
+
+	PR gcov-profile/95332
+	* libgcov-util.c (read_gcda_file): Call gcov_magic.
+	* libgcov.h (gcov_magic): Disable GCC poison.
+
 2020-05-21  H.J. Lu  <hongjiu.lu@intel.com>
 
 	PR target/95212
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 83f079c75dc..9ab019f5714 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-28  Harald Anlauf  <anlauf@gmx.de>
+
+	PR libfortran/95104
+	* io/unit.c (unlock_unit): Guard by check for NULL pointer.
+
 2020-05-26  Harald Anlauf  <anlauf@gmx.de>
 	    Steven G. Kargl   <kargl@gcc.gnu.org>


             reply	other threads:[~2020-06-11 12:56 UTC|newest]

Thread overview: 232+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-11 12:56 Nathan Sidwell [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-09-03 14:32 Nathan Sidwell
2020-09-03 14:31 Nathan Sidwell
2020-09-03 14:30 Nathan Sidwell
2020-09-03 14:30 Nathan Sidwell
2020-08-28 16:09 Nathan Sidwell
2020-08-28 16:07 Nathan Sidwell
2020-08-28 16:04 Nathan Sidwell
2020-08-28 16:01 Nathan Sidwell
2020-08-28 16:00 Nathan Sidwell
2020-08-28 16:00 Nathan Sidwell
2020-08-28 15:59 Nathan Sidwell
2020-08-28 15:58 Nathan Sidwell
2020-08-28 15:57 Nathan Sidwell
2020-08-27 18:14 Nathan Sidwell
2020-08-27 18:12 Nathan Sidwell
2020-08-27 18:11 Nathan Sidwell
2020-08-27 18:11 Nathan Sidwell
2020-08-27 18:11 Nathan Sidwell
2020-08-27 18:10 Nathan Sidwell
2020-08-27 18:08 Nathan Sidwell
2020-08-27 18:07 Nathan Sidwell
2020-08-27 18:05 Nathan Sidwell
2020-08-27 18:03 Nathan Sidwell
2020-08-27 18:03 Nathan Sidwell
2020-08-27 18:03 Nathan Sidwell
2020-08-27 18:02 Nathan Sidwell
2020-08-27 18:00 Nathan Sidwell
2020-08-07 22:38 Nathan Sidwell
2020-08-04 17:36 Nathan Sidwell
2020-08-03 15:30 Nathan Sidwell
2020-08-03 15:29 Nathan Sidwell
2020-08-03 15:29 Nathan Sidwell
2020-08-03 15:26 Nathan Sidwell
2020-08-03 15:23 Nathan Sidwell
2020-08-03 15:21 Nathan Sidwell
2020-07-28 13:51 Nathan Sidwell
2020-07-28 13:47 Nathan Sidwell
2020-07-28 13:46 Nathan Sidwell
2020-07-28 13:46 Nathan Sidwell
2020-07-28 13:44 Nathan Sidwell
2020-07-28 13:43 Nathan Sidwell
2020-07-22 16:17 Nathan Sidwell
2020-07-22 16:15 Nathan Sidwell
2020-07-20 13:06 Nathan Sidwell
2020-07-20 13:05 Nathan Sidwell
2020-07-20 13:05 Nathan Sidwell
2020-07-20 13:03 Nathan Sidwell
2020-07-20 12:59 Nathan Sidwell
2020-07-15 18:45 Nathan Sidwell
2020-07-14 16:13 Nathan Sidwell
2020-07-13 15:04 Nathan Sidwell
2020-07-13 15:04 Nathan Sidwell
2020-07-13 15:03 Nathan Sidwell
2020-07-13 14:59 Nathan Sidwell
2020-07-13 14:56 Nathan Sidwell
2020-07-08 19:01 Nathan Sidwell
2020-07-08 18:57 Nathan Sidwell
2020-07-08 18:53 Nathan Sidwell
2020-07-08 18:53 Nathan Sidwell
2020-07-08 18:52 Nathan Sidwell
2020-07-03 23:32 Nathan Sidwell
2020-07-03 23:30 Nathan Sidwell
2020-07-03 23:27 Nathan Sidwell
2020-07-03 23:26 Nathan Sidwell
2020-07-03 23:23 Nathan Sidwell
2020-06-29 21:21 Nathan Sidwell
2020-06-29 21:20 Nathan Sidwell
2020-06-29 21:19 Nathan Sidwell
2020-06-29 21:17 Nathan Sidwell
2020-06-29 21:14 Nathan Sidwell
2020-06-29 21:12 Nathan Sidwell
2020-06-29 21:11 Nathan Sidwell
2020-06-29 21:11 Nathan Sidwell
2020-06-29 21:10 Nathan Sidwell
2020-06-29 21:06 Nathan Sidwell
2020-06-29 21:02 Nathan Sidwell
2020-06-25 19:21 Nathan Sidwell
2020-06-25 14:45 Nathan Sidwell
2020-06-25 14:41 Nathan Sidwell
2020-06-25 14:40 Nathan Sidwell
2020-06-25 14:40 Nathan Sidwell
2020-06-25 14:36 Nathan Sidwell
2020-06-25 14:31 Nathan Sidwell
2020-06-25 14:27 Nathan Sidwell
2020-06-25 14:22 Nathan Sidwell
2020-06-25 14:18 Nathan Sidwell
2020-06-25 14:17 Nathan Sidwell
2020-06-25 14:16 Nathan Sidwell
2020-06-25 14:12 Nathan Sidwell
2020-06-11 13:11 Nathan Sidwell
2020-06-11 13:07 Nathan Sidwell
2020-06-11 13:02 Nathan Sidwell
2020-06-11 13:00 Nathan Sidwell
2020-06-11 12:59 Nathan Sidwell
2020-06-11 12:58 Nathan Sidwell
2020-06-11 12:53 Nathan Sidwell
2020-06-10 16:47 Nathan Sidwell
2020-06-10 16:45 Nathan Sidwell
2020-06-10 16:43 Nathan Sidwell
2020-06-10 16:43 Nathan Sidwell
2020-06-10 16:42 Nathan Sidwell
2020-06-10 16:40 Nathan Sidwell
2020-05-21 18:34 Nathan Sidwell
2020-05-21 18:31 Nathan Sidwell
2020-05-19 19:11 Nathan Sidwell
2020-05-19 19:09 Nathan Sidwell
2020-05-19 19:08 Nathan Sidwell
2020-05-19 19:08 Nathan Sidwell
2020-05-19 19:05 Nathan Sidwell
2020-05-14 15:17 Nathan Sidwell
2020-05-14 15:14 Nathan Sidwell
2020-05-12 21:10 Nathan Sidwell
2020-05-12 21:06 Nathan Sidwell
2020-05-12 21:06 Nathan Sidwell
2020-05-12 21:02 Nathan Sidwell
2020-05-08 19:00 Nathan Sidwell
2020-05-07 17:01 Nathan Sidwell
2020-05-07 16:58 Nathan Sidwell
2020-05-07 16:52 Nathan Sidwell
2020-05-07 16:50 Nathan Sidwell
2020-05-07 16:49 Nathan Sidwell
2020-05-07 16:49 Nathan Sidwell
2020-05-07 16:48 Nathan Sidwell
2020-05-07 16:45 Nathan Sidwell
2020-05-07 16:42 Nathan Sidwell
2020-05-07 16:41 Nathan Sidwell
2020-05-07 16:38 Nathan Sidwell
2020-05-07 16:38 Nathan Sidwell
2020-05-07 16:36 Nathan Sidwell
2020-05-07 16:35 Nathan Sidwell
2020-05-07 16:32 Nathan Sidwell
2020-05-07 16:29 Nathan Sidwell
2020-05-07 16:27 Nathan Sidwell
2020-05-07 16:24 Nathan Sidwell
2020-05-07 16:23 Nathan Sidwell
2020-05-07 16:22 Nathan Sidwell
2020-04-17 20:55 Nathan Sidwell
2020-04-17 20:53 Nathan Sidwell
2020-04-17 20:52 Nathan Sidwell
2020-04-17 20:50 Nathan Sidwell
2020-04-17 20:49 Nathan Sidwell
2020-04-17 20:49 Nathan Sidwell
2020-04-17 20:48 Nathan Sidwell
2020-04-17 20:47 Nathan Sidwell
2020-04-17 20:45 Nathan Sidwell
2020-04-17 20:42 Nathan Sidwell
2020-04-08 13:46 Nathan Sidwell
2020-04-08 13:45 Nathan Sidwell
2020-04-08 13:44 Nathan Sidwell
2020-04-08 13:43 Nathan Sidwell
2020-04-03 19:25 Nathan Sidwell
2020-04-03 19:24 Nathan Sidwell
2020-04-03 19:22 Nathan Sidwell
2020-04-03 19:20 Nathan Sidwell
2020-04-03 19:19 Nathan Sidwell
2020-04-03 19:19 Nathan Sidwell
2020-04-03 19:18 Nathan Sidwell
2020-03-27 13:50 Nathan Sidwell
2020-03-27 13:49 Nathan Sidwell
2020-03-27 13:46 Nathan Sidwell
2020-03-27 13:45 Nathan Sidwell
2020-03-23 14:42 Nathan Sidwell
2020-03-23 14:42 Nathan Sidwell
2020-03-23 14:40 Nathan Sidwell
2020-03-23 14:38 Nathan Sidwell
2020-03-23 14:37 Nathan Sidwell
2020-03-19 12:48 Nathan Sidwell
2020-03-19 12:45 Nathan Sidwell
2020-03-19 12:44 Nathan Sidwell
2020-03-19 12:43 Nathan Sidwell
2020-03-19 12:43 Nathan Sidwell
2020-03-19 12:41 Nathan Sidwell
2020-03-19 12:40 Nathan Sidwell
2020-03-19 12:38 Nathan Sidwell
2020-03-10 13:16 Nathan Sidwell
2020-03-10 13:15 Nathan Sidwell
2020-03-10 13:14 Nathan Sidwell
2020-03-10 13:12 Nathan Sidwell
2020-03-10 13:11 Nathan Sidwell
2020-03-10 13:08 Nathan Sidwell
2020-03-10 13:06 Nathan Sidwell
2020-03-10 13:04 Nathan Sidwell
2020-03-10 13:03 Nathan Sidwell
2020-03-10 13:02 Nathan Sidwell
2020-03-10 13:00 Nathan Sidwell
2020-02-28 13:31 Nathan Sidwell
2020-02-28 13:29 Nathan Sidwell
2020-02-28 13:27 Nathan Sidwell
2020-02-24 16:36 Nathan Sidwell
2020-02-24 16:36 Nathan Sidwell
2020-02-24 16:35 Nathan Sidwell
2020-02-24 16:33 Nathan Sidwell
2020-02-24 16:32 Nathan Sidwell
2020-02-24 16:29 Nathan Sidwell
2020-02-24 16:28 Nathan Sidwell
2020-02-24 16:27 Nathan Sidwell
2020-02-24 16:25 Nathan Sidwell
2020-02-24 16:20 Nathan Sidwell
2020-02-24 16:18 Nathan Sidwell
2020-02-24 16:16 Nathan Sidwell
2020-02-11 11:36 Nathan Sidwell
2020-02-11 11:34 Nathan Sidwell
2020-02-11 11:33 Nathan Sidwell
2020-02-11 11:33 Nathan Sidwell
2020-02-07 15:40 Nathan Sidwell
2020-02-07 15:38 Nathan Sidwell
2020-02-05 20:31 Nathan Sidwell
2020-02-05 20:29 Nathan Sidwell
2020-02-05 20:27 Nathan Sidwell
2020-02-05 20:27 Nathan Sidwell
2020-02-05 20:26 Nathan Sidwell
2020-01-31 17:55 Nathan Sidwell
2020-01-31 17:51 Nathan Sidwell
2020-01-31 17:49 Nathan Sidwell
2020-01-31 17:44 Nathan Sidwell
2020-01-31 17:42 Nathan Sidwell
2020-01-31 17:40 Nathan Sidwell
2020-01-31 17:39 Nathan Sidwell
2020-01-24 14:42 Nathan Sidwell
2020-01-24 14:40 Nathan Sidwell
2020-01-24 14:36 Nathan Sidwell
2020-01-24 14:34 Nathan Sidwell
2020-01-20 20:41 Nathan Sidwell
2020-01-20 20:41 Nathan Sidwell
2020-01-20 20:40 Nathan Sidwell
2020-01-17 19:21 Nathan Sidwell
2020-01-17 19:18 Nathan Sidwell
2020-01-17 19:14 Nathan Sidwell
2020-01-15 14:34 Nathan Sidwell
2020-01-15 14:32 Nathan Sidwell
2020-01-15 14:31 Nathan Sidwell

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=20200611125604.014913893678@sourceware.org \
    --to=nathan@gcc.gnu.org \
    --cc=gcc-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).