diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-02-21 00:18:20 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-02-21 00:18:20 +0000 |
commit | 65c64105a816a887092b954dee0340e45c9495b4 (patch) | |
tree | 722522c4e3cd91b4db91f632273c481a89c15dd1 /gcc | |
parent | 1eb68d9f414313da853da94fe1581256405c3e05 (diff) | |
download | gcc-65c64105a816a887092b954dee0340e45c9495b4.zip gcc-65c64105a816a887092b954dee0340e45c9495b4.tar.gz gcc-65c64105a816a887092b954dee0340e45c9495b4.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 46 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 13 | ||||
-rw-r--r-- | gcc/rust/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 28 |
5 files changed, 92 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a473929..3ab2938 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,49 @@ +2023-02-20 Uroš Bizjak <ubizjak@gmail.com> + + * config/i386/predicates.md + (general_x64constmem_operand): New predicate. + * config/i386/i386.md (*cmpqi_ext<mode>_1): + Use nonimm_x64constmem_operand. + (*cmpqi_ext<mode>_3): Use general_x64constmem_operand. + (*addqi_ext<mode>_1): Ditto. + (*testqi_ext<mode>_1): Ditto. + (*andqi_ext<mode>_1): Ditto. + (*andqi_ext<mode>_1_cc): Ditto. + (*<any_or:code>qi_ext<mode>_1): Ditto. + (*xorqi_ext<mode>_1_cc): Ditto. + +2023-02-20 Jakub Jelinek <jakub2redhat.com> + + PR target/108862 + * config/rs6000/rs6000.md (umaddditi4): Swap gen_maddlddi4 with + gen_umadddi4_highpart{,_le}. + +2023-02-20 Kito Cheng <kito.cheng@sifive.com> + + * config/riscv/riscv.md (prefetch): Use r instead of p for the + address operand. + (riscv_prefetchi_<mode>): Ditto. + +2023-02-20 Richard Biener <rguenther@suse.de> + + PR tree-optimization/108816 + * tree-vect-loop-manip.cc (vect_loop_versioning): Adjust + versioning condition split prerequesite, assert required + invariant. + +2023-02-20 Richard Biener <rguenther@suse.de> + + PR tree-optimization/108825 + * tree-ssa-loop-manip.cc (verify_loop_closed_ssa): For + loop-local verfication only verify there's no pending SSA + update. + +2023-02-20 Richard Biener <rguenther@suse.de> + + PR tree-optimization/108819 + * tree-ssa-loop-niter.cc (number_of_iterations_cltz): Check + we have an SSA name as iv_2 as expected. + 2023-02-18 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/108819 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 09ddb49..6d7db27 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230220 +20230221 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 20b2fe5..302e066 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,16 @@ +2023-02-20 Marek Polacek <polacek@redhat.com> + + PR c++/101073 + * constexpr.cc (cxx_eval_call_expression): Replace shortcutting trivial + constructor/op= with a checking assert. + +2023-02-20 Marek Polacek <polacek@redhat.com> + + PR c++/108829 + * pt.cc (prepend_one_capture): Set LAMBDA_CAPTURE_EXPLICIT_P. + (tsubst_lambda_expr): Pass LAMBDA_CAPTURE_EXPLICIT_P to + prepend_one_capture. + 2023-02-18 Jason Merrill <jason@redhat.com> DR 2518 diff --git a/gcc/rust/ChangeLog b/gcc/rust/ChangeLog index 6c6d7f9..0f4aad5 100644 --- a/gcc/rust/ChangeLog +++ b/gcc/rust/ChangeLog @@ -1,3 +1,7 @@ +2023-02-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * backend/rust-tree.cc: Include memmodel.h. + 2023-02-17 Thomas Schwinge <thomas@codesourcery.com> * backend/rust-tree.cc: '#include "tm_p.h"'. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fcef7d8..f4f7ec2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,31 @@ +2023-02-20 Jakub Jelinek <jakub2redhat.com> + + PR target/108862 + * gcc.dg/pr108862.c: New test. + * gcc.target/powerpc/pr108862.c: New test. + +2023-02-20 Marek Polacek <polacek@redhat.com> + + PR c++/101073 + * g++.dg/cpp0x/constexpr-nsdmi3.C: New test. + * g++.dg/cpp1y/constexpr-nsdmi10.C: New test. + +2023-02-20 Marek Polacek <polacek@redhat.com> + + PR c++/108829 + * g++.dg/cpp0x/lambda/lambda-108829-2.C: New test. + * g++.dg/cpp0x/lambda/lambda-108829.C: New test. + +2023-02-20 Richard Biener <rguenther@suse.de> + + PR tree-optimization/108816 + * gcc.dg/torture/pr108816.c: New testcase. + +2023-02-20 Richard Biener <rguenther@suse.de> + + PR tree-optimization/108825 + * gcc.dg/torture/pr108825.c: New testcase. + 2023-02-18 Jason Merrill <jason@redhat.com> DR 2518 |