From 454a4d5041f53cd1f7d902f6c0017b7ce95b36df Mon Sep 17 00:00:00 2001 From: GCC Administrator <gccadmin@gcc.gnu.org> Date: Sat, 18 Mar 2023 00:16:40 +0000 Subject: [PATCH] Daily bump. --- gcc/ChangeLog | 91 +++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 6 +++ gcc/cp/ChangeLog | 16 ++++++++ gcc/d/ChangeLog | 5 +++ gcc/m2/ChangeLog | 19 +++++++++ gcc/testsuite/ChangeLog | 60 +++++++++++++++++++++++++++ libphobos/ChangeLog | 5 +++ libstdc++-v3/ChangeLog | 6 +++ 9 files changed, 209 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 998f0e799705..3d8c91be75ae 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,94 @@ +2023-03-18 Peter Bergner <bergner@linux.ibm.com> + + PR rtl-optimization/109179 + * lra-constraints.cc (combine_reload_insn): Enforce TO is not a debug + insn or note. Move the tests earlier to guard lra_get_insn_recog_data. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR target/105554 + * function.h (push_struct_function): Add ABSTRACT_P argument defaulted + to false. + * function.cc (push_struct_function): Add ABSTRACT_P argument, pass it + to allocate_struct_function instead of false. + * tree-inline.cc (initialize_cfun): Don't copy DECL_ARGUMENTS + nor DECL_RESULT here. Pass true as ABSTRACT_P to + push_struct_function. Call targetm.target_option.relayout_function + after it. + (tree_function_versioning): Formatting fix. + +2023-03-17 Vladimir N. Makarov <vmakarov@redhat.com> + + * lra-constraints.cc: Include hooks.h. + (combine_reload_insn): New function. + (lra_constraints): Call it. + +2023-03-17 Ju-Zhe Zhong <juzhe.zhong@rivai.ai> + kito-cheng <kito.cheng@sifive.com> + + * config/riscv/riscv-v.cc (legitimize_move): Allow undef value + as legitimate value. + * config/riscv/riscv-vector-builtins.cc + (function_expander::use_ternop_insn): Fix bugs of ternary intrinsic. + (function_expander::use_widen_ternop_insn): Ditto. + * config/riscv/vector.md (@vundefined<mode>): New pattern. + (pred_mul_<optab><mode>_undef_merge): Remove. + (*pred_mul_<optab><mode>_undef_merge_scalar): Ditto. + (*pred_mul_<optab><mode>_undef_merge_extended_scalar): Ditto. + (pred_neg_mul_<optab><mode>_undef_merge): Ditto. + (*pred_neg_mul_<optab><mode>_undef_merge_scalar): Ditto. + +2023-03-17 Ju-Zhe Zhong <juzhe.zhong@rivai.ai> + + PR target/109092 + * config/riscv/riscv.md: Fix subreg bug. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/108685 + * omp-expand.cc (expand_omp_for_ordered_loops): Add L0_BB argument, + use its loop_father rather than BODY_BB's loop_father. + (expand_omp_for_generic): Adjust expand_omp_for_ordered_loops caller. + If broken_loop with ordered > collapse and at least one of those + extra loops aren't guaranteed to have at least one iteration, change + l0_bb's loop_father to entry_bb's loop_father. Set cont_bb's + loop_father to l0_bb's loop_father rather than l1_bb's. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR plugins/108634 + * gdbhooks.py (TreePrinter.to_string): Wrap + gdb.parse_and_eval('tree_code_type') in a try block, parse + and eval 'tree_code_type_tmpl<0>::tree_code_type' instead if it + raises exception. Update comments for the recent tree_code_type + changes. + +2023-03-17 Sandra Loosemore <sandra@codesourcery.com> + + * doc/extend.texi (BPF Built-in Functions): Fix numerous markup + issues. Add more line breaks to example so it doesn't overflow + the margins. + +2023-03-17 Sandra Loosemore <sandra@codesourcery.com> + + * doc/extend.texi (Common Function Attributes) <access>: Fix bad + line breaks in examples. + <malloc>: Fix bad line breaks in running text, also copy-edit + for consistency. + (Extended Asm) <Generic Operand Modifiers>: Fix @multitable width. + * doc/invoke.texi (Option Summary) <Developer Options>: Fix misplaced + @gol. + (C++ Dialect Options) <-fcontracts>: Add line break in example. + <-Wctad-maybe-unsupported>: Likewise. + <-Winvalid-constexpr>: Likewise. + (Warning Options) <-Wdangling-pointer>: Likewise. + <-Winterference-size>: Likewise. + <-Wvla-parameter>: Likewise. + (Static Analyzer Options): Fix bad line breaks in running text, + plus add some missing markup. + (Optimize Options) <openacc-privatization>: Fix more bad line + breaks in running text. + 2023-03-16 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386-expand.cc (expand_vec_perm_pblendv): diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 348f4b8a133c..4b45c22ce57e 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230317 +20230318 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index f391bf8b0542..929a95f6eaa2 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,9 @@ +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR c/109151 + * c-ubsan.cc (ubsan_instrument_division): Handle all scalar integral + types rather than just INTEGER_TYPE. + 2023-03-10 Marek Polacek <polacek@redhat.com> PR sanitizer/108060 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 893d4e9bd3b1..69616ed450bb 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,19 @@ +2023-03-17 Jason Merrill <jason@redhat.com> + + PR c++/108975 + * lambda.cc (prune_lambda_captures): Don't bother in a template. + +2023-03-17 Jason Merrill <jason@redhat.com> + + PR c++/109172 + * except.cc (build_throw): Check dtor access. + +2023-03-17 Jason Merrill <jason@redhat.com> + + PR c++/69410 + * friend.cc (do_friend): Handle namespace as scope argument. + * decl.cc (grokdeclarator): Pass down in_namespace. + 2023-03-16 Jason Merrill <jason@redhat.com> PR c++/105809 diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index 7c340f68c840..0ec5aeee2dfa 100644 --- a/gcc/d/ChangeLog +++ b/gcc/d/ChangeLog @@ -1,3 +1,8 @@ +2023-03-17 Iain Buclaw <ibuclaw@gdcproject.org> + + * dmd/MERGE: Merge upstream dmd 5f7552bb28. + * dmd/VERSION: Bump version to v2.103.0-rc.1. + 2023-03-16 Iain Buclaw <ibuclaw@gdcproject.org> * dmd/MERGE: Merge upstream dmd 4ca4140e58. diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog index 4a188723d2a1..c98137736bcc 100644 --- a/gcc/m2/ChangeLog +++ b/gcc/m2/ChangeLog @@ -1,3 +1,22 @@ +2023-03-17 Gaius Mulley <gaiusmod2@gmail.com> + + PR modula2/109032 + * gm2-gcc/m2expr.cc: Correct ? : order in comments. + (m2expr_BuildDivM2): Improve comment. + * lang.opt: Improve option descriptions. + +2023-03-17 Gaius Mulley <gaiusmod2@gmail.com> + + PR modula2/109102 + * gm2-gcc/m2builtins.cc (ASSERT): Change format specifier to + use %qs rather than quotes. + +2023-03-17 Gaius Mulley <gaiusmod2@gmail.com> + + * gm2-compiler/M2AsmUtil.mod (SymNeedsModulePrefix): + Re-implemented. + * gm2-libs/SysStorage.mod (enableTrace): Disable tracing. + 2023-03-16 Gaius Mulley <gaiusmod2@gmail.com> * gm2-compiler/SymbolKey.mod (PutSymKey): Halt parameters diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a285f923cfb0..84709374fc81 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,63 @@ +2023-03-17 Hans-Peter Nilsson <hp@axis.com> + + * gcc.dg/plugin/infoleak-2.c, + gcc.dg/plugin/infoleak-CVE-2011-1078-1.c, + gcc.dg/plugin/infoleak-CVE-2011-1078-2.c, + gcc.dg/plugin/infoleak-CVE-2017-18549-1.c, + gcc.dg/plugin/infoleak-CVE-2017-18550-1.c, + gcc.dg/plugin/infoleak-antipatterns-1.c, + gcc.dg/plugin/infoleak-fixit-1.c: Skip for default_packed targets. + +2023-03-17 Jason Merrill <jason@redhat.com> + + PR c++/108975 + * g++.dg/cpp0x/lambda/lambda-const11.C: New test. + +2023-03-17 Jason Merrill <jason@redhat.com> + + PR c++/109172 + * g++.dg/eh/dtor4.C: New test. + +2023-03-17 Jason Merrill <jason@redhat.com> + + PR c++/69410 + * g++.dg/lookup/friend24.C: New test. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR target/105554 + * gcc.target/i386/pr105554.c: New test. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR c/109151 + * c-c++-common/ubsan/div-by-zero-8.c: New test. + +2023-03-17 Vladimir N. Makarov <vmakarov@redhat.com> + + * gcc.target/i386/pr109052.c: New. + +2023-03-17 Ju-Zhe Zhong <juzhe.zhong@rivai.ai> + kito-cheng <kito.cheng@sifive.com> + + * gcc.target/riscv/rvv/base/binop_vv_constraint-4.c: Adapt the test. + * gcc.target/riscv/rvv/base/binop_vv_constraint-6.c: Ditto. + * gcc.target/riscv/rvv/base/binop_vx_constraint-127.c: Ditto. + * g++.target/riscv/rvv/base/bug-1.C: New test. + * gcc.target/riscv/rvv/base/bug-2.c: New test. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR testsuite/109145 + * gcc.dg/tree-ssa/forwprop-39.c: Remove -std=c11 from dg-options. + Don't include complex.h. + (foo): Use __builtin_complex rather than CMPLXF. + +2023-03-17 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/108685 + * c-c++-common/gomp/doacross-8.c: New test. + 2023-03-16 Jason Merrill <jason@redhat.com> PR c++/105809 diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index ff51a6b0dad5..70d4f557d1c4 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,3 +1,8 @@ +2023-03-17 Iain Buclaw <ibuclaw@gdcproject.org> + + * libdruntime/MERGE: Merge upstream druntime 5f7552bb28. + * src/MERGE: Merge upstream phobos 67a47cf39. + 2023-03-16 Iain Buclaw <ibuclaw@gdcproject.org> * libdruntime/MERGE: Merge upstream druntime 4ca4140e58. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d6004da8361e..985de50afbf8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2023-03-17 Jonathan Wakely <jwakely@redhat.com> + + PR libstdc++/109165 + * include/std/coroutine (hash<>::operator()): Add const. + * testsuite/18_support/coroutines/hash.cc: New test. + 2023-03-14 Patrick Palka <ppalka@redhat.com> PR libstdc++/109111 -- GitLab