public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-8538] Daily bump.
@ 2021-06-10  0:18 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2021-06-10  0:18 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:2e7ea6a95511f540ba3d0bb65c9c2a4af629103e

commit r11-8538-g2e7ea6a95511f540ba3d0bb65c9c2a4af629103e
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Thu Jun 10 00:18:12 2021 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 30 ++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c/ChangeLog         |  8 ++++++++
 gcc/cp/ChangeLog        |  9 +++++++++
 gcc/d/ChangeLog         | 18 ++++++++++++++++++
 gcc/testsuite/ChangeLog | 28 ++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  |  8 ++++++++
 7 files changed, 102 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 91679d95c79..a15958c2957 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,33 @@
+2021-06-09  Claudiu Zissulescu  <claziss@synopsys.com>
+
+	Backported from master:
+	2021-06-09  Claudiu Zissulescu  <claziss@synopsys.com>
+
+	* config/arc/arc.md (loop_end): Change it to
+	define_insn_and_split.
+
+2021-06-09  Claudiu Zissulescu  <claziss@synopsys.com>
+
+	Backported from master:
+	2021-06-09  Claudiu Zissulescu  <claziss@synopsys.com>
+
+	* config/arc/arc.md (maddhisi4): Use VMAC2H instruction.
+	(machi): New pattern.
+	(umaddhisi4): Use VMAC2HU instruction.
+	(umachi): New pattern.
+
+2021-06-09  Claudiu Zissulescu  <claziss@synopsys.com>
+
+	Backported from master:
+	2021-06-09  Claudiu Zissulescu  <claziss@synopsys.com>
+
+	* config/arc/arc-protos.h (arc_split_move_p): New prototype.
+	* config/arc/arc.c (arc_split_move_p): New function.
+	(arc_split_move): Clean up.
+	* config/arc/arc.md (movdi_insn): Clean up, use arc_split_move_p.
+	(movdf_insn): Likewise.
+	* config/arc/simdext.md (mov<VWH>_insn): Likewise.
+
 2021-06-08  Pat Haugen  <pthaugen@linux.ibm.com>
 
 	* config/rs6000/rs6000-logue.c (rs6000_emit_prologue): Use
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 217a88045db..04de83c25ef 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20210609
+20210610
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 600456f1ebb..88e6624396c 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,11 @@
+2021-06-09  Eric Botcazou  <ebotcazou@adacore.com>
+
+	PR c/100920
+	* c-typeck.c (convert_for_assignment): Test fndecl_built_in_p to
+	spot built-in functions. Do not warn on pointer assignment and
+	initialization for storage order purposes if the RHS is a call
+	to a DECL_IS_MALLOC function.
+
 2021-05-13  Martin Sebor  <msebor@redhat.com>
 
 	PR c/100550
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 94cad25a9a4..732834f60c5 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,12 @@
+2021-06-09  Marek Polacek  <polacek@redhat.com>
+
+	Backported from master:
+	2021-06-08  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/100065
+	* decl.c (grokdeclarator): Store a value-dependent
+	explicit-specifier even for deduction guides.
+
 2021-06-08  Jason Merrill  <jason@redhat.com>
 
 	PR c++/100963
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 53c7c6c3d3f..462e4dd9c17 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,21 @@
+2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	Backported from master:
+	2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	PR d/100964
+	* dmd/expression.c (Expression::checkPostblit): Don't generate
+	TypeInfo when RTTI is disabled.
+
+2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	Backported from master:
+	2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	PR d/100935
+	* dmd/mtype.c (Type::getProperty): Prefer explicit alignment over
+	natural alignment for alignof property.
+
 2021-06-04  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	Backported from master:
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e0763a2a8c3..34a7b4e7113 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,31 @@
+2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	Backported from master:
+	2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	PR d/100964
+	* gdc.test/compilable/betterCarray.d: Add test cases.
+
+2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	Backported from master:
+	2021-06-09  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	PR d/100935
+	* gdc.test/compilable/aggr_alignment.d: Add test cases.
+
+2021-06-09  Marek Polacek  <polacek@redhat.com>
+
+	Backported from master:
+	2021-06-08  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/100065
+	* g++.dg/cpp2a/explicit18.C: New test.
+
+2021-06-09  Eric Botcazou  <ebotcazou@adacore.com>
+
+	* gcc.dg/sso-14.c: New test.
+
 2021-06-08  Jason Merrill  <jason@redhat.com>
 
 	PR c++/100963
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 56b7ab2fde4..4ac7fe07082 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,11 @@
+2021-06-09  Thomas Rodgers  <rodgert@appliantology.com>
+
+	Backported from master:
+	2021-06-09  Thomas Rodgers  <rodgert@appliantology.com>
+
+	* testsuite/29_atomics/atomic_ref/wait_notify.cc: Guard
+	test logic with constexpr check for is_always_lock_free.
+
 2021-06-08  Thomas Rodgers  <rodgert@appliantology.com>
 
 	Backported from master:


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

only message in thread, other threads:[~2021-06-10  0:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10  0:18 [gcc r11-8538] Daily bump GCC Administrator

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