From 1bb52662574f6c98de48a5db8c180786e4a53039 Mon Sep 17 00:00:00 2001 From: GCC Administrator Date: Tue, 1 Feb 2022 00:16:29 +0000 Subject: Daily bump. --- ChangeLog | 4 ++++ contrib/ChangeLog | 5 +++++ gcc/ChangeLog | 42 ++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 10 ++++++++++ gcc/cp/ChangeLog | 25 +++++++++++++++++++++++++ gcc/d/ChangeLog | 5 +++++ gcc/testsuite/ChangeLog | 39 +++++++++++++++++++++++++++++++++++++++ libatomic/ChangeLog | 5 +++++ libgomp/ChangeLog | 5 +++++ libiberty/ChangeLog | 12 ++++++++++++ libitm/ChangeLog | 5 +++++ libstdc++-v3/ChangeLog | 5 +++++ 13 files changed, 163 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 975dcd4..5d4bfbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2022-01-31 Ed Smith-Rowland + + * MAINTAINERS: Update my email and add myself to the DCO list. + 2022-01-25 Thomas Schwinge Revert: diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 42029e8..d968cbf 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2022-01-31 Martin Liska + + * analyze_brprob.py: Support more formatted predict.def file. + * analyze_brprob_spec.py: Improve output and documentation. + 2022-01-27 Martin Liska * git-undescr.sh: Support full output of git-descr.sh. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4cb2b0d4..4e99b17 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,45 @@ +2022-01-31 Andrew Pinski + + * fold-const.h (operand_compare::operand_equal_p): + Fix comment about OEP_* flags. + +2022-01-31 Jakub Jelinek + + PR target/104298 + * config/rs6000/aix.h (OPTION_GLIBC): Remove. + * config/rs6000/darwin.h (OPTION_GLIBC): Likewise. + * config/rs6000/option-defaults.h (OPTION_GLIBC): Define to 0 + if not already defined. + +2022-01-31 Martin Sebor + + PR middle-end/104232 + * gimple-ssa-warn-access.cc (pointers_related_p): Add argument. + Handle PHIs. Add a synonymous overload. + (pass_waccess::check_pointer_uses): Call pointers_related_p. + +2022-01-31 Richard Biener + + PR tree-optimization/100499 + * fold-const.cc (multiple_of_p): Pass the correct type of + the expression to the recursive invocation of multiple_of_p + for conversions and use CASE_CONVERT. + +2022-01-31 Eric Botcazou + + PR target/104189 + * config/sparc/linux64.h (TARGET_DEFAULT): Add MASK_V8PLUS. + +2022-01-31 Richard Biener + + PR tree-optimization/100499 + * tree-cfg.cc (verify_gimple_assign_ternary): Use multiple_p + on poly-ints instead of multiple_of_p. + * tree-ssa.cc (maybe_rewrite_mem_ref_base): Likewise. + (non_rewritable_mem_ref_base): Likewise. + (non_rewritable_lvalue_p): Likewise. + (execute_update_addresses_taken): Likewise. + 2022-01-29 Jakub Jelinek Andrew Pinski diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 85fa54d..587a0aa 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220131 +20220201 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index cb1a026..3e72eb7 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,13 @@ +2022-01-31 Pierre-Marie de Rodat + + * doc/share/conf.py: Remove spurious call to ".decode()". + +2022-01-31 Arnaud Charlet + + PR ada/104027 + * gnat1drv.adb (Gnat1drv): Only call Exit_Program when not + generating code, otherwise instead go to End_Of_Program. + 2022-01-28 Eric Botcazou PR ada/104258 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 19fbfa7..75aa136 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,28 @@ +2022-01-31 Marek Polacek + + PR c++/102414 + PR c++/101874 + * decl.cc (create_array_type_for_decl): Use template_placeholder_p. + Sorry on a variable-length array of auto. + +2022-01-31 Marek Polacek + + PR c++/102434 + * class.cc (finish_struct): Don't allow union initializer_list. + +2022-01-31 Patrick Palka + + PR c++/104294 + * pt.cc (ctor_deduction_guides_for): Correct computation of + outer_args. + +2022-01-31 Patrick Palka + + PR c++/104291 + * pt.cc (for_each_template_parm_r) : Clear + walk_subtrees if !include_nondeduced_p. Simplify given that + cp_walk_subtrees already walks TYPE_PTRMEMFUNC_FN_TYPE_RAW. + 2022-01-28 Patrick Palka Jason Merrill diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index 22c4d86..b9d0735 100644 --- a/gcc/d/ChangeLog +++ b/gcc/d/ChangeLog @@ -1,3 +1,8 @@ +2022-01-31 Martin Liska + + PR d/104287 + * decl.cc (d_finish_decl): Remove trailing dot. + 2022-01-28 Martin Liska * decl.cc (d_finish_decl): Do not use leading capital letter. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 024c46b..67fbfa3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,42 @@ +2022-01-31 Marek Polacek + + PR c++/102414 + PR c++/101874 + * g++.dg/cpp23/auto-array3.C: New test. + * g++.dg/cpp23/auto-array4.C: New test. + +2022-01-31 Marek Polacek + + PR c++/102434 + * g++.dg/cpp0x/initlist128.C: New test. + +2022-01-31 Patrick Palka + + PR c++/104294 + * g++.dg/cpp1z/class-deduction106.C: New test. + +2022-01-31 Patrick Palka + + PR c++/104291 + * g++.dg/template/partial20.C: New test. + +2022-01-31 Martin Sebor + + PR middle-end/104232 + * g++.dg/warn/Wuse-after-free4.C: New test. + * gcc.dg/Wuse-after-free-2.c: New test. + * gcc.dg/Wuse-after-free-3.c: New test. + +2022-01-31 Jakub Jelinek + + PR tree-optimization/103514 + * gcc.dg/tree-ssa/pr103514.c: Add + --param logical-op-non-short-circuit=1 to dg-options. + +2022-01-31 Eric Botcazou + + * gnat.dg/div_zero.adb: New test. + 2022-01-29 Jakub Jelinek PR tree-optimization/95424 diff --git a/libatomic/ChangeLog b/libatomic/ChangeLog index 61d7635..7901f86 100644 --- a/libatomic/ChangeLog +++ b/libatomic/ChangeLog @@ -1,3 +1,8 @@ +2022-01-31 Martin Liska + + * acinclude.m4: Detect *_ld_is_mold and use it. + * configure: Regenerate. + 2022-01-24 Martin Liska * acinclude.m4: Remove duplicate diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index c3ebcb3..3be01f7 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2022-01-31 Martin Liska + + * acinclude.m4: Detect *_ld_is_mold and use it. + * configure: Regenerate. + 2022-01-27 Tobias Burnus * libgomp.texi (OpenMP 5.0): Update implementation status. diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 3e68100..11fe614 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,15 @@ +2022-01-31 Nick Clifton + + PR demangler/98886 + PR demangler/99935 + * rust-demangle.c (struct rust_demangler): Add a recursion + counter. + (demangle_path): Increment/decrement the recursion counter upon + entry and exit. Fail if the counter exceeds a fixed limit. + (demangle_type): Likewise. + (rust_demangle_callback): Initialise the recursion counter, + disabling if requested by the option flags. + 2022-01-15 Martin Sebor * regex.c: Suppress -Wuse-after-free. diff --git a/libitm/ChangeLog b/libitm/ChangeLog index 42b426b..66f8fb9 100644 --- a/libitm/ChangeLog +++ b/libitm/ChangeLog @@ -1,3 +1,8 @@ +2022-01-31 Martin Liska + + * acinclude.m4: Detect *_ld_is_mold and use it. + * configure: Regenerate. + 2022-01-03 Jakub Jelinek * libitm.texi: Bump @copying's copyright year. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 769e806..dc5aa17 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2022-01-31 Martin Liska + + * acinclude.m4: Detect *_ld_is_mold and use it. + * configure: Regenerate. + 2022-01-30 Hans-Peter Nilsson * testsuite/27_io/basic_istream/get/char/lwg3464.cc: Don't run on -- cgit v1.1