diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-07-26 00:17:23 +0000 |
---|---|---|
committer | Thomas Koenig <tkoenig@gcc.gnu.org> | 2024-07-28 19:05:59 +0200 |
commit | 141ad69ba60f4c22382b66240a1c6c2104102846 (patch) | |
tree | effd23c23c8e18937270fdffc9df7ef2a2b43e8b /gcc | |
parent | b9594864b7c39fe6c4072de2dac39fc6e1bd8aac (diff) | |
download | gcc-141ad69ba60f4c22382b66240a1c6c2104102846.zip gcc-141ad69ba60f4c22382b66240a1c6c2104102846.tar.gz gcc-141ad69ba60f4c22382b66240a1c6c2104102846.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 139 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 56 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 121 |
4 files changed, 317 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0ee5f8b..30312ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,142 @@ +2024-07-25 Carl Love <cel@linux.ibm.com> + + * config/rs6000/rs6000-builtin.cc (get_element_number, + altivec_expand_vec_set_builtin): Remove functions. + (rs6000_expand_builtin): Remove the if statement to call + altivec_expand_vec_set_builtin. + * config/rs6000/rs6000-builtins.def (__builtin_vsx_set_1ti, + __builtin_vsx_set_2df, __builtin_vsx_set_2di): Remove the + built-in definitions. + * config/rs6000/rs6000-gen-builtins.cc (struct attrinfo): + Remove the isset variable from the structure. + (parse_bif_attrs): Remove the uses of the isset variable. + +2024-07-25 Carl Love <cel@linux.ibm.com> + + * config/rs6000/rs6000-builtins.def (__builtin_vec_set_v1ti, + __builtin_vec_set_v2df, __builtin_vec_set_v2di): Remove built-in + definitions. + * config/rs6000/rs6000-c.cc (resolve_vec_insert): Remove the + handling for constant vec_insert position with + VECTOR_UNIT_VSX_P V1TImode, V2DFmode and V2DImode modes. + +2024-07-25 Carl Love <cel@linux.ibm.com> + + * config/rs6000/rs6000-builtins.def (__builtin_vsx_xvcmpeqsp, + __builtin_vsx_xvcmpgesp, __builtin_vsx_xvcmpgtsp): Remove + definitions. + +2024-07-25 Jeff Law <jlaw@ventanamicro.com> + + PR rtl-optimization/116039 + * ext-dce.cc (ext_dce_process_uses): Add some comments about concerns + with current code. Mark additional bit groups as live when we have + an extension of a suitably promoted subreg. + +2024-07-25 Christoph Müllner <christoph.muellner@vrull.eu> + + PR target/116033 + * config/riscv/thead.cc (th_memidx_classify_address_modify): + Fix mode test. + +2024-07-25 Richard Biener <rguenther@suse.de> + + PR tree-optimization/116083 + * tree-vect-slp.cc (vect_build_slp_tree): Do not allocate + a discovery fail node when we reached the discovery limit. + (vect_build_slp_instance): Terminate early when the + discovery limit is reached. + +2024-07-25 Richard Sandiford <richard.sandiford@arm.com> + + * doc/rtl.texi: Document the need to define INCLUDE_ARRAY before + including rtl-ssa.h. + * rtl-ssa.h: Likewise (in comment). + * config/aarch64/aarch64-cc-fusion.cc: Add INCLUDE_ARRAY. + * config/aarch64/aarch64-early-ra.cc: Likewise. + * config/riscv/riscv-avlprop.cc: Likewise. + * config/riscv/riscv-vsetvl.cc: Likewise. + * fwprop.cc: Likewise. + * late-combine.cc: Likewise. + * pair-fusion.cc: Likewise. + * rtl-ssa/accesses.cc: Likewise. + * rtl-ssa/blocks.cc: Likewise. + * rtl-ssa/changes.cc: Likewise. + * rtl-ssa/functions.cc: Likewise. + * rtl-ssa/insns.cc: Likewise. + * rtl-ssa/movement.cc: Likewise. + +2024-07-25 Sam James <sam@gentoo.org> + + PR middle-end/114855 + * doc/invoke.texi (Optimize options): Mention machine-generated + code for -O1. + +2024-07-25 Richard Biener <rguenther@suse.de> + + PR tree-optimization/116081 + * tree-vect-loop.cc (get_initial_defs_for_reduction): + Use operand_equal_p for comparing the element with the + neutral op. + +2024-07-25 Richard Biener <rguenther@suse.de> + + PR tree-optimization/116079 + * tree-ssa-loop-im.cc (hoist_memory_references): Clear + VDEF of elided clobbers. + +2024-07-25 Richard Biener <rguenther@suse.de> + + PR tree-optimization/116081 + * tree-vect-stmts.cc (vect_get_vector_types_for_stmt): + Properly compare types. + +2024-07-25 Robin Dapp <rdapp@ventanamicro.com> + + PR target/116036 + * config/riscv/riscv.cc (riscv_override_options_internal): Error + with TARGET_VECTOR && !TARGET_MUL. + +2024-07-25 Juzhe-Zhong <juzhe.zhong@rivai.ai> + + * config/riscv/riscv.cc (riscv_legitimize_move): Fix poly_int dest generation. + +2024-07-25 Richard Sandiford <richard.sandiford@arm.com> + + PR rtl-optimization/116044 + * rtl-ssa/functions.h (function_info::split_clobber_group): Return + an array of two clobber_groups. + * rtl-ssa/accesses.cc (function_info::split_clobber_group): Return + the new clobber groups. Don't modify the splay tree here. + (function_info::add_def): Update call accordingly. Generalize + the splay tree insertion code so that the new definition can be + inserted as a child of any existing node, not just the root. + Fix the insertion used after calling split_clobber_group. + +2024-07-25 Jennifer Schmitz <jschmitz@nvidia.com> + + * config/aarch64/aarch64-sve-builtins.cc + (gimple_folder::redirect_call): Update return type. + * config/aarch64/aarch64-sve-builtins.h: Likewise. + * config/aarch64/aarch64-sve-builtins-sve2.cc (svqshl_impl::fold): + Remove cast to gcall. + (svrshl_impl::fold): Likewise. + +2024-07-25 Richard Biener <rguenther@suse.de> + + * tree-ssa-structalias.cc (constraint_equal): Take const + reference to constraints. + (constraint_vec_find): Similar. + (solve_graph): Keep constraint vector sorted and verify + sorting with checking. + +2024-07-25 Lingling Kong <lingling.kong@intel.com> + + PR target/115749 + * config/i386/x86-tune-costs.h (struct processor_costs): + Adjust rtx_cost of imulq and imulw for COST_N_INSNS (4) + to COST_N_INSNS (3). + 2024-07-24 David Malcolm <dmalcolm@redhat.com> * diagnostic-format-sarif.cc (sarif_builder::make_locations_arr): diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 503038d..c8f8a5f 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240725 +20240726 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 493bd52..c647803 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,59 @@ +2024-07-25 Jason Merrill <jason@redhat.com> + + PR c++/115403 + PR c++/109753 + * decl.cc (start_preparsed_function): Only call decl_attributes for + artificial functions. + +2024-07-25 Patrick Palka <ppalka@redhat.com> + + PR c++/115897 + * cp-tree.h (dependent_opaque_alias_p): Declare. + * pt.cc (push_template_decl): Manually mark a dependent opaque + alias or dependent alias template specialization as dependent, + and use structural equality for them. + (dependent_opaque_alias_p): Define. + (alias_template_specialization_p): Don't look through an + opaque alias. + (complex_alias_template_p): Use dependent_opaque_alias_p instead of + any_dependent_template_arguments_p directly. + (dependent_alias_template_spec_p): Don't look through an + opaque alias. + (get_underlying_template): Use dependent_opaque_alias_p instead of + any_dependent_template_arguments_p. + (instantiate_alias_template): Mention same logic in + push_template_decl. + (dependent_type_p_r): Remove dependent_alias_template_spec_p check. + (any_template_arguments_need_structural_equality_p): Return true + for a dependent opaque alias. + (alias_ctad_tweaks): Use template_args_equal instead of same_type_p + followed by dependent_alias_template_spec_p. + * tree.cc (strip_typedefs): Don't strip an opaque alias. + * typeck.cc (structural_comptypes): Compare declaration attributes + for an opaque alias. + +2024-07-25 Patrick Palka <ppalka@redhat.com> + + PR c++/115897 + * tree.cc (strip_typedefs): Move up the typedef recursion case. + Never strip a dependent alias template-id that has dependent + attributes. + +2024-07-25 Arsen Arsenović <arsen@aarsen.me> + + PR c++/110171 + * coroutines.cc (co_await_get_resume_call): New function. + Returns the await_resume expression of a given co_await. + * cp-tree.h (co_await_get_resume_call): New function. + * cvt.cc (convert_to_void): Handle CO_AWAIT_EXPRs and call + maybe_warn_nodiscard on their resume exprs. + +2024-07-25 Arsen Arsenović <arsen@aarsen.me> + + PR c++/111728 + * coroutines.cc (rewrite_param_uses): Skip unevaluated + subexpressions. + 2024-07-24 Jason Merrill <jason@redhat.com> PR c++/116071 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 163fbec..ee342d2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,124 @@ +2024-07-25 Jason Merrill <jason@redhat.com> + + PR c++/115403 + PR c++/109753 + * g++.dg/ext/pragma-target1.C: New test. + +2024-07-25 Patrick Palka <ppalka@redhat.com> + + PR c++/115897 + * g++.dg/cpp0x/alias-decl-79.C: Remove xfails. + * g++.dg/cpp0x/alias-decl-79a.C: New test. + +2024-07-25 Patrick Palka <ppalka@redhat.com> + + PR c++/115897 + * g++.dg/cpp0x/alias-decl-78.C: New test. + * g++.dg/cpp0x/alias-decl-79.C: New test. + * g++.dg/cpp0x/alias-decl-pr92206-1a.C: New test. + +2024-07-25 Carl Love <cel@linux.ibm.com> + + * gcc.target/powerpc/vsx-builtin-3.c: Remove test cases for the + __builtin_vsx_set_2df built-in. + +2024-07-25 Carl Love <cel@linux.ibm.com> + + * gcc.target/powerpc/vsx-builtin-3.c (do_cmp): Replace + __builtin_vsx_xvcmp{eq,gt,ge}{sp,dp} by vec_cmp{eq,gt,ge} + respectively and add explicit casts to vector {float,double}. + Add more testing code assigning result to vector boolean types. + +2024-07-25 Jakub Jelinek <jakub@redhat.com> + + PR c++/110343 + * c-c++-common/raw-string-1.c: Use { c || c++11 } effective target, + remove c++ specific dg-options. + * c-c++-common/raw-string-2.c: Likewise. + * c-c++-common/raw-string-4.c: Likewise. + * c-c++-common/raw-string-5.c: Likewise. Expect some diagnostics + only for non-c++26, for c++26 expect different. + * c-c++-common/raw-string-6.c: Use { c || c++11 } effective target, + remove c++ specific dg-options. + * c-c++-common/raw-string-11.c: Likewise. + * c-c++-common/raw-string-13.c: Likewise. + * c-c++-common/raw-string-14.c: Likewise. + * c-c++-common/raw-string-15.c: Use { c || c++11 } effective target, + change c++ specific dg-options to just -Wtrigraphs. + * c-c++-common/raw-string-16.c: Likewise. + * c-c++-common/raw-string-17.c: Use { c || c++11 } effective target, + remove c++ specific dg-options. + * c-c++-common/raw-string-18.c: Use { c || c++11 } effective target, + remove -std=c++11 from c++ specific dg-options. + * c-c++-common/raw-string-19.c: Likewise. + * g++.dg/cpp26/raw-string1.C: New test. + * g++.dg/cpp26/raw-string2.C: New test. + +2024-07-25 Jeff Law <jlaw@ventanamicro.com> + + PR rtl-optimization/116039 + * gcc.dg/torture/pr116039.c: New test. + +2024-07-25 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libfortran/105361 + * gfortran.dg/pr105361.f90: New test. + +2024-07-25 Christoph Müllner <christoph.muellner@vrull.eu> + + PR target/116033 + * gcc.target/riscv/pr116033.c: New test. + +2024-07-25 Arsen Arsenović <arsen@aarsen.me> + + PR c++/110171 + * g++.dg/coroutines/pr110171-1.C: New test. + * g++.dg/coroutines/pr110171.C: New test. + +2024-07-25 Arsen Arsenović <arsen@aarsen.me> + + PR c++/111728 + * g++.dg/coroutines/pr111728.C: New test. + +2024-07-25 Jeff Law <jlaw@ventanamicro.com> + + * gcc.dg/torture/pr116037.c: Fix target selector. + +2024-07-25 Richard Biener <rguenther@suse.de> + + PR tree-optimization/116079 + * gcc.dg/torture/pr116079.c: New testcase. + +2024-07-25 Robin Dapp <rdapp@ventanamicro.com> + + * gcc.target/riscv/arch-31.c: Add m to arch string and expect it. + * gcc.target/riscv/arch-32.c: Ditto. + * gcc.target/riscv/arch-37.c: Ditto. + * gcc.target/riscv/arch-38.c: Ditto. + * gcc.target/riscv/predef-14.c: Ditto. + * gcc.target/riscv/predef-15.c: Ditto. + * gcc.target/riscv/predef-16.c: Ditto. + * gcc.target/riscv/predef-26.c: Ditto. + * gcc.target/riscv/predef-27.c: Ditto. + * gcc.target/riscv/predef-32.c: Ditto. + * gcc.target/riscv/predef-33.c: Ditto. + * gcc.target/riscv/predef-36.c: Ditto. + * gcc.target/riscv/predef-37.c: Ditto. + * gcc.target/riscv/rvv/autovec/pr111486.c: Add m to arch string. + * gcc.target/riscv/compare-debug-1.c: Ditto. + * gcc.target/riscv/compare-debug-2.c: Ditto. + * gcc.target/riscv/rvv/base/pr116036.c: New test. + +2024-07-25 Juzhe-Zhong <juzhe.zhong@rivai.ai> + + * gcc.target/riscv/rvv/autovec/poly_licm-1.c: New test. + * gcc.target/riscv/rvv/autovec/poly_licm-2.c: New test. + * gcc.target/riscv/rvv/autovec/poly_licm-3.c: New test. + +2024-07-25 Lingling Kong <lingling.kong@intel.com> + + * gcc.target/i386/pr115749.c: New test. + 2024-07-24 David Malcolm <dmalcolm@redhat.com> * c-c++-common/diagnostic-format-sarif-file-Wbidi-chars.c: Verify |