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

https://gcc.gnu.org/g:4d68c7f7b5aea5e95f44c3af13a24aa3daae9cf5

commit r14-367-g4d68c7f7b5aea5e95f44c3af13a24aa3daae9cf5
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Mon May 1 00:16:44 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 23 +++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c/ChangeLog         | 11 +++++++++++
 gcc/m2/ChangeLog        | 16 ++++++++++++++++
 gcc/testsuite/ChangeLog | 44 ++++++++++++++++++++++++++++++++++++++++++++
 libcpp/ChangeLog        | 13 +++++++++++++
 libsanitizer/ChangeLog  | 10 ++++++++++
 7 files changed, 118 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 32c66de7fb9..61f88c6766d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,26 @@
+2023-04-30  Roger Sayle  <roger@nextmovesoftware.com>
+
+	* config/stormy16/stormy16.md (neghi2): Rewrite pattern using
+	inc to avoid clobbering the carry flag.
+
+2023-04-30  Andrew Pinski  <apinski@marvell.com>
+
+	* match.pd: Add patterns for "a != 0 ? FUNC(a) : CST"
+	for FUNC of POPCOUNT BSWAP FFS PARITY CLZ and CTZ.
+
+2023-04-30  Andrew Pinski  <apinski@marvell.com>
+
+	* tree-ssa-phiopt.cc (empty_bb_or_one_feeding_into_p):
+	Allow some builtin/internal function calls which
+	are known not to trap/throw.
+	(phiopt_worker::match_simplify_replacement):
+	Use name instead of getting the lhs again.
+
+2023-04-30  Joakim Nohlgård  <joakim@nohlgard.se>
+
+	* configure: Regenerate.
+	* configure.ac: Use ld -r in the check for HAVE_LD_RO_RW_SECTION_MIXING
+
 2023-04-29  Hans-Peter Nilsson  <hp@axis.com>
 
 	* reload1.cc (emit_insn_if_valid_for_reload_1): Rename from
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 8de8e66b47c..cc2a1e59ade 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230430
+20230501
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 9c8e6c526a5..67445c5d284 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,14 @@
+2023-04-30  Andrew Pinski  <apinski@marvell.com>
+
+	* c-typeck.cc (process_init_element): Print out array type
+	for excessive elements.
+
+2023-04-30  Andrew Pinski  <apinski@marvell.com>
+
+	PR c/107926
+	* c-typeck.cc (process_init_element): Move the check
+	for string cst until after the error message.
+
 2023-04-28  Eugene Rozenfeld  <erozen@microsoft.com>
 
 	* Make-lang.in: Merge perf data collected when compiling cc1 and runtime libraries
diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog
index 6c8a0be6123..f9af344eedb 100644
--- a/gcc/m2/ChangeLog
+++ b/gcc/m2/ChangeLog
@@ -1,3 +1,19 @@
+2023-04-30  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* gm2-compiler/SymbolTable.mod (ConstLitPoolEntry): New
+	pointer to record.
+	(ConstLitSym): New field RangeError.
+	(ConstLitPoolTree): New SymbolTree representing name to
+	index.
+	(ConstLitArray): New dynamic array containing pointers
+	to a ConstLitPoolEntry.
+	(CreateConstLit): New procedure function.
+	(LookupConstLitPoolEntry): New procedure function.
+	(AddConstLitPoolEntry): New procedure function.
+	(MakeConstLit): Re-implemented to check the constant lit
+	pool before calling CreateConstLit.
+	* m2.flex: Add ability to decode binary constant literals.
+
 2023-04-26  Gaius Mulley  <gaiusmod2@gmail.com>
 
 	PR modula2/108121
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 85d52f2a9f7..79f165568ab 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,47 @@
+2023-04-30  Jeff Law  <jlaw@ventanamicro>
+
+	Revert:
+	2023-04-30  Longjun Luo  <luolongjuna@gmail.com>
+
+	* gcc.dg/builtin-redefine.c: Test for redefintion warnings
+	for __LINE__.
+	* gcc.dg/builtin-redefine-1.c: New test.
+
+2023-04-30  Roger Sayle  <roger@nextmovesoftware.com>
+
+	* gcc.target/xstormy16/neghi2.c: Update expected implementation.
+
+2023-04-30  Andrew Pinski  <apinski@marvell.com>
+
+	* gcc.dg/init-bad-1.c: Update error message.
+	* gcc.dg/init-bad-2.c: Likewise.
+	* gcc.dg/init-bad-3.c: Likewise.
+	* gcc.dg/init-excess-3.c: Likewise.
+	* gcc.dg/pr61096-1.c: Likewise.
+
+2023-04-30  Andrew Pinski  <apinski@marvell.com>
+
+	PR c/107926
+	* gcc.dg/init-excess-3.c: New test.
+
+2023-04-30  Martin Liska  <mliska@suse.cz>
+
+	* c-c++-common/hwasan/asan-pr70541.c: Adjust wording of expected
+	output.
+	* c-c++-common/hwasan/heap-overflow.c: Likewise.
+	* c-c++-common/hwasan/sanity-check-pure-c.c: Likewise.
+	* c-c++-common/hwasan/use-after-free.c: Likewise.
+
+2023-04-30  Longjun Luo  <luolongjuna@gmail.com>
+
+	* gcc.dg/builtin-redefine.c: Test for redefintion warnings
+	for __LINE__.
+	* gcc.dg/builtin-redefine-1.c: New test.
+
+2023-04-30  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* gm2/pim/run/pass/constlitbase.mod: New test.
+
 2023-04-29  Roger Sayle  <roger@nextmovesoftware.com>
 
 	* gcc.target/xstormy16/neghi2.c: New test case.
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index 8510dc20bed..847db367bb6 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,16 @@
+2023-04-30  Jeff Law  <jlaw@ventanamicro>
+
+	Revert:
+	2023-04-30  Longjun Luo  <luolongjuna@gmail.com>
+
+	* init.cc (builtin_array): Do not always warn for a redefinition
+	of __LINE__.
+
+2023-04-30  Longjun Luo  <luolongjuna@gmail.com>
+
+	* init.cc (builtin_array): Do not always warn for a redefinition
+	of __LINE__.
+
 2023-03-25  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/109098
diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog
index 179cad2f2ef..57b2a5cf646 100644
--- a/libsanitizer/ChangeLog
+++ b/libsanitizer/ChangeLog
@@ -1,3 +1,13 @@
+2023-04-30  Martin Liska  <mliska@suse.cz>
+
+	PR sanitizer/109674
+	* hwasan/Makefile.am: Depend on liblsan.
+	* hwasan/Makefile.in: Re-generate.
+
+2023-04-30  Martin Liska  <mliska@suse.cz>
+
+	* LOCAL_PATCHES: Update revision.
+
 2023-04-26  Martin Liska  <mliska@suse.cz>
 
 	* LOCAL_PATCHES: Change revision.

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

only message in thread, other threads:[~2023-05-01  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-01  0:17 [gcc r14-367] 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).