diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-05-28 00:16:59 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-05-28 00:16:59 +0000 |
commit | 958a682794d9f7666557e2a92869312b2a187c00 (patch) | |
tree | 04bc80a0d2fbce134479d150189f0c6432489b31 | |
parent | c5a7628470a7fb801ebeea82e16a4549db43bfa5 (diff) | |
download | gcc-958a682794d9f7666557e2a92869312b2a187c00.zip gcc-958a682794d9f7666557e2a92869312b2a187c00.tar.gz gcc-958a682794d9f7666557e2a92869312b2a187c00.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 76 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 42 |
3 files changed, 119 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae1c4f6..9141284 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 345a13e..cfeb7c2 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240527 +20240528 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 12e3936..27c61d5 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. |