From: GCC Administrator Date: Wed, 21 Dec 2022 00:17:15 +0000 (+0000) Subject: Daily bump. X-Git-Tag: basepoints/gcc-14~2396 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a996888327c2248b59db7244333740c2b51578c9;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc11164bcc85..dbd97af45ffc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,34 @@ +2022-12-20 Patrick Palka + + PR c++/101886 + * tree.cc (walk_tree_1) : Walk the elements + in forward instead of reverse order. + : Likewise. + +2022-12-20 Andrew MacLeod + + PR tree-optimization/108139 + * gimple-range-cache.cc (ranger_cache::fill_block_cache): Do not + use equivalences originating from PHIS. + +2022-12-20 Richard Biener + + PR d/104749 + * doc/install.texi (GDC): Document GDC 9.4 or later is required + to build the D language frontend. + +2022-12-20 Jiufu Guo + + PR target/103743 + * config/rs6000/rs6000-protos.h (can_be_rotated_to_lowbits): New. + (can_be_rotated_to_positive_16bits): New. + (can_be_rotated_to_negative_15bits): New. + * config/rs6000/rs6000.cc (can_be_rotated_to_lowbits): New definition. + (can_be_rotated_to_positive_16bits): New definition. + (can_be_rotated_to_negative_15bits): New definition. + * config/rs6000/rs6000.md (*rotate_on_cmpdi): New define_insn_and_split. + (eqne): Move earlier. + 2022-12-19 Jason Merrill * sort.cc: Disable -Wconditionally-supported in diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 142f05d43541..1bcb133d5ced 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221220 +20221221 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 73f1c54dec71..0edaadbc4895 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,29 @@ +2022-12-20 Patrick Palka + + PR c++/101886 + * pt.cc (find_template_parameter_info::parm_list_tail): + New data member. + (keep_template_parm): Use parm_list_tail to append rather + than prepend to parm_list. + +2022-12-20 Iain Sandoe + + * mangle.cc (write_mangled_name): Append the helper function + suffixes here... + (write_encoding): ... rather than here. + +2022-12-20 Patrick Palka + + PR c++/103346 + PR c++/104278 + PR c++/102553 + * pt.cc (tsubst_copy) : Move the + handling of C++20 template parameter object wrappers to ... + (tsubst_copy_and_build) : ... here. + Accept non-TEMPLATE_PARM_INDEX inner operand. Handle empty + TREE_TYPE on substituted inner operand. Remove same_type_p + assert. Also handle REF_PARENTHESIZED_P VIEW_CONVERT_EXPRs. + 2022-12-19 Patrick Palka PR c++/100881 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 8ca9af2a996e..f95aa8bfc6dd 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2022-12-20 Harald Anlauf + + PR fortran/95375 + * decl.cc (verify_bind_c_sym): Extend interoperability check to + CLASS variables. + 2022-12-18 Steve Kargl PR fortran/107397 diff --git a/gcc/rust/ChangeLog b/gcc/rust/ChangeLog index fea0f7fa7be4..035f5ea2f0f4 100644 --- a/gcc/rust/ChangeLog +++ b/gcc/rust/ChangeLog @@ -1,3 +1,9 @@ +2022-12-20 Marc Poulhiès + + PR rust/108113 + * Make-lang.in (rust.serial): New variable. + (rust1$(exeext)): Depend on $(rust.prev). Call LINK_PROGRESS. + 2022-12-14 Jakub Jelinek PR rust/106072 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fdb864b0ccac..82d088b490fd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,40 @@ +2022-12-20 Patrick Palka + + PR c++/101886 + * g++.dg/concepts/diagnostic12.C: Adjust expected order of + template parameters within pretty printed parameter mapping. + * g++.dg/concepts/auto6.C: New test. + +2022-12-20 Harald Anlauf + + PR fortran/95375 + * gfortran.dg/bind_c_procs_4.f90: New test. + +2022-12-20 Iain Sandoe + + * g++.dg/coroutines/torture/extern-c-coroutine.C: New test. + +2022-12-20 Patrick Palka + + PR c++/103346 + PR c++/104278 + PR c++/102553 + * g++.dg/cpp2a/nontype-class52a.C: New test. + * g++.dg/cpp2a/nontype-class53.C: New test. + * g++.dg/cpp2a/nontype-class54.C: New test. + * g++.dg/cpp2a/nontype-class55.C: New test. + +2022-12-20 Andrew MacLeod + + PR tree-optimization/108139 + * gcc.dg/pr108139.c: New. + +2022-12-20 Jiufu Guo + + PR target/103743 + * gcc.target/powerpc/pr103743.c: New test. + * gcc.target/powerpc/pr103743_1.c: New test. + 2022-12-19 Patrick Palka PR c++/100881