aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog23
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/c/ChangeLog11
-rw-r--r--gcc/m2/ChangeLog16
-rw-r--r--gcc/testsuite/ChangeLog44
-rw-r--r--libcpp/ChangeLog13
-rw-r--r--libsanitizer/ChangeLog10
7 files changed, 118 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 32c66de..61f88c6 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 8de8e66..cc2a1e5 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230430
+20230501
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 9c8e6c5..67445c5 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 6c8a0be..f9af344 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 85d52f2..79f1655 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 8510dc2..847db36 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 179cad2..57b2a5c 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.