[gcc r15-854] Daily bump.
GCC Administrator
gccadmin@gcc.gnu.org
Tue May 28 00:17:30 GMT 2024
https://gcc.gnu.org/g:958a682794d9f7666557e2a92869312b2a187c00
commit r15-854-g958a682794d9f7666557e2a92869312b2a187c00
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date: Tue May 28 00:16:59 2024 +0000
Daily bump.
Diff:
---
gcc/ChangeLog | 76 +++++++++++++++++++++++++++++++++++++++++++++++++
gcc/DATESTAMP | 2 +-
gcc/testsuite/ChangeLog | 42 +++++++++++++++++++++++++++
3 files changed, 119 insertions(+), 1 deletion(-)
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ae1c4f6c209..914128408c6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,79 @@
+2024-05-27 Andrew Pinski <quic_apinski@quicinc.com>
+
+ PR tree-optimization/115238
+ * generic-match-head.cc (bitwise_inverted_equal_p): Use
+ uniform_integer_cst_p instead of checking INTEGER_CST.
+ * gimple-match-head.cc (gimple_bitwise_inverted_equal_p): Likewise.
+
+2024-05-27 Gaius Mulley <gaiusmod2@gmail.com>
+
+ * doc/gm2.texi: Replace all occurrences of xref
+ {foo, , , gm2} with xref {foo}.
+
+2024-05-27 Richard Biener <rguenther@suse.de>
+
+ * tree-ssa-structalias.cc (scc_visit): Mark the node we
+ collapse to as being in a component.
+
+2024-05-27 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/115220
+ PR tree-optimization/115226
+ * tree-ssa-sink.cc (statement_sink_location): When ignoring
+ paths to kills when sinking stores make sure the final
+ sink location is still post-dominated by the original one.
+ Otherwise we'd need to insert a PHI node to merge virtual operands.
+
+2024-05-27 TheShermanTanker <tanksherman27@gmail.com>
+
+ * config/mingw/mingw32.h: Add new define for POSIX
+ threads.
+
+2024-05-27 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/115232
+ * gimple-ssa-warn-access.cc (new_delete_mismatch_p): Handle
+ failure to demangle gracefully.
+
+2024-05-27 Gerald Pfeifer <gerald@pfeifer.com>
+
+ * doc/gm2.texi (What is GNU Modula-2): Move gcc.gnu.org links to
+ https.
+ (Other languages): Ditto. And fix casing of GCC.
+
+2024-05-27 Liao Shihua <shihua@iscas.ac.cn>
+
+ * config/riscv/riscv.cc (riscv_rtx_costs): Add TARGET_ZMMUL.
+
+2024-05-27 Maciej W. Rozycki <macro@orcam.me.uk>
+
+ * doc/invoke.texi (Option Summary): Add `-md', `-md-float', and
+ `-mg-float' options. Reorder, matching VAX Options.
+ (VAX Options): Reword the description of `-mg' option. Add
+ `-md', `-md-float', and `-mg-float' options.
+
+2024-05-27 Abe Skolnik <abe_skolnik@yahoo.com>
+
+ PR target/79646
+ * config/vax/vax.opt (md, md-float, mg, mg-float): Correct
+ descriptions.
+
+2024-05-27 Lyut Nersisyan <lyut.nersisyan@gmail.com>
+
+ * config/riscv/riscv.md (<optab>_shift_reverse<X:mode>): New pattern.
+
+2024-05-27 Levy Hsu <admin@levyhsu.com>
+ H.J. Lu <hjl.tools@gmail.com>
+
+ PR target/115146
+ * config/i386/i386-expand.cc (expand_vec_perm_psrlw_psllw_por): Replace arithmatic shift
+ gen_ashrv4hi3 with logic shift gen_lshrv4hi3.
+ Replace gen_vlshrv8hi3 with gen_lshrv8hi3 and gen_vashlv8hi3 with gen_ashlv8hi3.
+
+2024-05-27 Pan Li <pan2.li@intel.com>
+
+ * genmatch.cc (dt_node::gen_kids_1): Fix indenet mis-aligned.
+
2024-05-26 Jeff Law <jlaw@ventanamicro.com>
* config/riscv/riscv.cc (riscv_build_integer_one): Verify there
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 345a13ee31c..cfeb7c20268 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240527
+20240528
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 12e39368b4c..27c61d5ddfb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,45 @@
+2024-05-27 Andrew Pinski <quic_apinski@quicinc.com>
+
+ PR tree-optimization/115238
+ * gcc.dg/tree-ssa/bitops-9.c: New test.
+
+2024-05-27 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/115220
+ PR tree-optimization/115226
+ * gcc.dg/torture/pr115220.c: New testcase.
+ * gcc.dg/torture/pr115226.c: New testcase.
+
+2024-05-27 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/115232
+ * g++.dg/pr115232.C: New testcase.
+
+2024-05-27 Simon Martin <simartin@gcc.gnu.org>
+
+ PR c++/105229
+ * g++.dg/parse/crash72.C: New test.
+
+2024-05-27 Liao Shihua <shihua@iscas.ac.cn>
+
+ * gcc.target/riscv/zmmul-3.c: New test.
+
+2024-05-27 Lyut Nersisyan <lyut.nersisyan@gmail.com>
+
+ * gcc.target/riscv/and-shift32.c: New test.
+ * gcc.target/riscv/and-shift64.c: New test.
+ Co-authored-by: Jeffrey A Law <jlaw@ventanamicro.com>
+
+2024-05-27 Levy Hsu <admin@levyhsu.com>
+ H.J. Lu <hjl.tools@gmail.com>
+
+ PR target/115146
+ * g++.target/i386/pr107563-a.C: Append '-mno-sse3' to compile option
+ to avoid test failure on hosts with SSE3 support.
+ * g++.target/i386/pr107563-b.C: Append '-mno-sse3' to compile option
+ to avoid test failure on hosts with SSE3 support.
+ * gcc.target/i386/pr115146.c: New test.
+
2024-05-26 Jeff Law <jlaw@ventanamicro.com>
* gcc.target/riscv/synthesis-8.c: New test.
More information about the Gcc-cvs
mailing list