aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2023-05-01 00:16:44 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2023-05-01 00:16:44 +0000
commit4d68c7f7b5aea5e95f44c3af13a24aa3daae9cf5 (patch)
tree8d2430fc5ecae8a58e5fca0adb57bc095cb13047 /gcc
parent33b6b7919763d939a153fe6f4aa3250c107605ee (diff)
downloadgcc-4d68c7f7b5aea5e95f44c3af13a24aa3daae9cf5.zip
gcc-4d68c7f7b5aea5e95f44c3af13a24aa3daae9cf5.tar.gz
gcc-4d68c7f7b5aea5e95f44c3af13a24aa3daae9cf5.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-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
5 files changed, 95 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.