public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-7835] Daily bump.
@ 2022-03-27  0:17 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-03-27  0:17 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:d2906412ada87a4bdd6410060bc18a2c53c419b7

commit r12-7835-gd2906412ada87a4bdd6410060bc18a2c53c419b7
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Mar 27 00:16:33 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 27 +++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/analyzer/ChangeLog  |  9 +++++++++
 gcc/c-family/ChangeLog  |  4 ++++
 gcc/cp/ChangeLog        | 13 +++++++++++++
 gcc/testsuite/ChangeLog | 25 +++++++++++++++++++++++++
 6 files changed, 79 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4b1cdddde81..1f49cbdcd67 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,30 @@
+2022-03-26  Roger Sayle  <roger@nextmovesoftware.com>
+
+	PR middle-end/104885
+	* calls.cc (mark_stack_region_used): Check that the region
+	is within the allocated size of stack_usage_map.
+
+2022-03-26  Jakub Jelinek  <jakub@redhat.com>
+
+	PR rtl-optimization/103775
+	* recog.cc (check_invalid_inc_dec): New function.
+	(insn_invalid_p): Return 1 if REG_INC operand overlaps
+	any stored REGs.
+
+2022-03-26  H.J. Lu  <hjl.tools@gmail.com>
+
+	PR target/105058
+	* config/i386/sse.md (loadiwkey): Replace "v" with "x".
+	(aes<aesklvariant>u8): Likewise.
+
+2022-03-26  H.J. Lu  <hjl.tools@gmail.com>
+
+	PR target/105052
+	* config/i386/sse.md (ssse3_ph<plusminus_mnemonic>wv4hi3):
+	Replace "Yv" with "x".
+	(ssse3_ph<plusminus_mnemonic>dv2si3): Likewise.
+	(ssse3_psign<mode>3): Likewise.
+
 2022-03-26  Hans-Peter Nilsson  <hp@axis.com>
 
 	* reload.cc (find_reloads): Align comment with code where
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 8b0bfd64c7b..70c092d6a80 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220326
+20220327
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index a76d61e3cbb..d0c74b48105 100644
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,3 +1,12 @@
+2022-03-26  David Malcolm  <dmalcolm@redhat.com>
+
+	PR analyzer/105057
+	* store.cc (binding_cluster::make_unknown_relative_to): Reject
+	attempts to create a cluster for untracked base regions.
+	(store::set_value): Likewise.
+	(store::fill_region): Likewise.
+	(store::mark_region_as_unknown): Likewise.
+
 2022-03-25  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/104954
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index c28da277ec0..a85f82f490b 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,7 @@
+2022-03-26  Thomas Schwinge  <thomas@codesourcery.com>
+
+	* c.opt: Properly quote comment.
+
 2022-03-25  Eric Botcazou  <ebotcazou@adacore.com>
 
 	* c-ada-spec.cc (dump_ada_import): Deal with the "section" attribute
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index f17a9c9a5ac..2c885b2394e 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,16 @@
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/105050
+	* constexpr.cc (potential_constant_expression_1) <case IF_STMT>:
+	Clarify error message when a if-stmt is non-constant because its
+	branches are non-constant.
+
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/103455
+	* call.cc (add_builtin_candidate) <case MEMBER_REF>: Test
+	CLASS_TYPE_P instead of MAYBE_CLASS_TYPE_P.
+
 2022-03-26  Jakub Jelinek  <jakub@redhat.com>
 
 	* parser.cc (cp_parser_postfix_expression)
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 51880608576..260858893d2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,28 @@
+2022-03-26  Jakub Jelinek  <jakub@redhat.com>
+
+	PR rtl-optimization/103775
+	* gcc.dg/pr103775.c: New test.
+
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/105050
+	* g++.dg/cpp1y/constexpr-105050.C: New test.
+
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/103455
+	* g++.dg/overload/builtin6.C: New test.
+
+2022-03-26  David Malcolm  <dmalcolm@redhat.com>
+
+	PR analyzer/105057
+	* gcc.dg/analyzer/fread-2.c: New test, as a regression test for
+	ICE in store::set_value on untracked base region.
+	* gcc.dg/analyzer/memset-2.c: Likewise, for ICE in
+	store::fill_region.
+	* gcc.dg/analyzer/strcpy-2.c: Likewise, for ICE in
+	store::mark_region_as_unknown.
+
 2022-03-26  Jakub Jelinek  <jakub@redhat.com>
 
 	* c-c++-common/builtin-convertvector-3.c: New test.


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

only message in thread, other threads:[~2022-03-27  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-27  0:17 [gcc r12-7835] 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).